activerdf_jena 0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +3 -0
- data/LICENSE +504 -0
- data/README +47 -0
- data/ext/antlr-2.7.5.jar +0 -0
- data/ext/arq-extra.jar +0 -0
- data/ext/arq.jar +0 -0
- data/ext/aterm-java-1.6.jar +0 -0
- data/ext/commons-logging-1.1.jar +0 -0
- data/ext/concurrent.jar +0 -0
- data/ext/derby.jar +0 -0
- data/ext/icu4j_3_4.jar +0 -0
- data/ext/iri.jar +0 -0
- data/ext/jena.jar +0 -0
- data/ext/json.jar +0 -0
- data/ext/junit.jar +0 -0
- data/ext/log4j-1.2.12.jar +0 -0
- data/ext/lucene-core-2.0.0.jar +0 -0
- data/ext/pellet.jar +0 -0
- data/ext/relaxngDatatype.jar +0 -0
- data/ext/stax-api-1.0.jar +0 -0
- data/ext/wstx-asl-3.0.0.jar +0 -0
- data/ext/xercesImpl.jar +0 -0
- data/ext/xml-apis.jar +0 -0
- data/ext/xsdlib.jar +0 -0
- data/lib/activerdf_jena/init.rb +24 -0
- data/lib/activerdf_jena/jena.rb +59 -0
- data/lib/activerdf_jena/jena_adapter.rb +480 -0
- data/lib/activerdf_jena/lucene.rb +22 -0
- data/lib/activerdf_jena/pellet.rb +25 -0
- data/test/activerdf.log.0 +783 -0
- data/test/bnode_org_rss.rdf +793 -0
- data/test/eyal-foaf.nt +39 -0
- data/test/s1.n3 +18 -0
- data/test/test.rb +11 -0
- data/test/test_data.nt +32 -0
- data/test/test_jena_adapter.rb +430 -0
- metadata +95 -0
@@ -0,0 +1,22 @@
|
|
1
|
+
#
|
2
|
+
# Author: Karsten Huneycutt
|
3
|
+
# Copyright 2007 Valkeir Corporation
|
4
|
+
# License: LGPL
|
5
|
+
#
|
6
|
+
module LuceneARQ
|
7
|
+
|
8
|
+
class << self
|
9
|
+
bool_accessor :lucene_available
|
10
|
+
end
|
11
|
+
|
12
|
+
KEYWORD_PREDICATE = "http://jena.hpl.hp.com/ARQ/property#textMatch"
|
13
|
+
|
14
|
+
begin
|
15
|
+
include_class('com.hp.hpl.jena.query.larq.LARQ')
|
16
|
+
include_package('com.hp.hpl.jena.query.larq')
|
17
|
+
self.lucene_available = true
|
18
|
+
rescue
|
19
|
+
self.lucene_available = false
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
#
|
2
|
+
# Author: Karsten Huneycutt
|
3
|
+
# Copyright 2007 Valkeir Corporation
|
4
|
+
# License: LGPL
|
5
|
+
#
|
6
|
+
module Pellet
|
7
|
+
|
8
|
+
class << self
|
9
|
+
bool_accessor :pellet_available
|
10
|
+
attr_accessor :reasoner_factory
|
11
|
+
end
|
12
|
+
|
13
|
+
begin
|
14
|
+
include_class('org.mindswap.pellet.jena.PelletReasonerFactory')
|
15
|
+
self.pellet_available = true
|
16
|
+
self.reasoner_factory = PelletReasonerFactory.theInstance
|
17
|
+
rescue
|
18
|
+
self.pellet_available = false
|
19
|
+
end
|
20
|
+
|
21
|
+
module Query
|
22
|
+
include_package('org.mindswap.pellet.query.jena')
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
@@ -0,0 +1,783 @@
|
|
1
|
+
# Logfile created on Sun Sep 02 18:09:34 CEST 2007 by /
|
2
|
+
I, [2007-09-02T18:09:34.090000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena, :ontology=>:rdfs}
|
3
|
+
D, [2007-09-02T18:09:34.176000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena, :ontology=>:rdfs}
|
4
|
+
I, [2007-09-02T18:09:34.597000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x26b44d>
|
5
|
+
I, [2007-09-02T18:09:34.660000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena, :ontology=>:rdfs}
|
6
|
+
D, [2007-09-02T18:09:34.732000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena, :ontology=>:rdfs}
|
7
|
+
I, [2007-09-02T18:09:34.752000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x1e8225>
|
8
|
+
I, [2007-09-02T18:09:34.754000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
9
|
+
D, [2007-09-02T18:09:34.756000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
10
|
+
I, [2007-09-02T18:09:34.769000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x6f8b22>
|
11
|
+
I, [2007-09-02T18:09:34.784000 #4121220] INFO -- : ConnectionPool: clear called
|
12
|
+
I, [2007-09-02T18:09:34.786000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
13
|
+
D, [2007-09-02T18:09:34.789000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
14
|
+
I, [2007-09-02T18:09:34.799000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x24865f>
|
15
|
+
I, [2007-09-02T18:09:34.820000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x1e8225>
|
16
|
+
I, [2007-09-02T18:09:34.823000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena, :ontology=>:rdfs}
|
17
|
+
D, [2007-09-02T18:09:34.824000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena, :ontology=>:rdfs}
|
18
|
+
I, [2007-09-02T18:09:34.838000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x2a2a7d>
|
19
|
+
I, [2007-09-02T18:09:34.840000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
20
|
+
D, [2007-09-02T18:09:34.848000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
21
|
+
I, [2007-09-02T18:09:34.868000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x87d605>
|
22
|
+
I, [2007-09-02T18:09:34.871000 #4121220] INFO -- : ConnectionPool: clear called
|
23
|
+
I, [2007-09-02T18:09:34.881000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
24
|
+
D, [2007-09-02T18:09:34.883000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
25
|
+
I, [2007-09-02T18:09:34.893000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xee97a9>
|
26
|
+
I, [2007-09-02T18:09:34.897000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x2a2a7d>
|
27
|
+
I, [2007-09-02T18:09:34.899000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena, :ontology=>:rdfs}
|
28
|
+
D, [2007-09-02T18:09:34.901000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena, :ontology=>:rdfs}
|
29
|
+
I, [2007-09-02T18:09:34.953000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x4f1e63>
|
30
|
+
I, [2007-09-02T18:09:34.957000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena, :ontology=>:rdfs}
|
31
|
+
D, [2007-09-02T18:09:34.959000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena, :ontology=>:rdfs}
|
32
|
+
I, [2007-09-02T18:09:34.995000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xdd5368>
|
33
|
+
I, [2007-09-02T18:09:34.997000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena, :ontology=>:rdfs}
|
34
|
+
D, [2007-09-02T18:09:34.999000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena, :ontology=>:rdfs}
|
35
|
+
I, [2007-09-02T18:09:35.056000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x9e7493>
|
36
|
+
I, [2007-09-02T18:09:35.059000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena, :ontology=>:rdfs}
|
37
|
+
D, [2007-09-02T18:09:35.060000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena, :ontology=>:rdfs}
|
38
|
+
I, [2007-09-02T18:09:35.110000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xb8f952>
|
39
|
+
I, [2007-09-02T18:09:35.113000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena, :ontology=>:rdfs}
|
40
|
+
D, [2007-09-02T18:09:35.115000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena, :ontology=>:rdfs}
|
41
|
+
I, [2007-09-02T18:09:35.129000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x91feb1>
|
42
|
+
I, [2007-09-02T18:09:35.131000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena, :ontology=>:rdfs}
|
43
|
+
D, [2007-09-02T18:09:35.132000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena, :ontology=>:rdfs}
|
44
|
+
I, [2007-09-02T18:09:35.145000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xe47fc3>
|
45
|
+
I, [2007-09-02T18:11:53.400000 #4121220] INFO -- : ActiveRDF started, logging level: 0
|
46
|
+
I, [2007-09-02T18:11:53.435000 #4121220] INFO -- : Namespace: registering http://www.w3.org/1999/02/22-rdf-syntax-ns# to rdf
|
47
|
+
I, [2007-09-02T18:11:53.440000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2000/01/rdf-schema# to rdfs
|
48
|
+
I, [2007-09-02T18:11:53.442000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2002/07/owl# to owl
|
49
|
+
I, [2007-09-02T18:11:53.469000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2001/XMLSchema# to xsd
|
50
|
+
I, [2007-09-02T18:11:53.503000 #4121220] INFO -- : ActiveRDF is NOT installed as a Gem
|
51
|
+
I, [2007-09-02T18:11:54.642000 #4121220] INFO -- : ConnectionPool: registering adapter of type jena for class JenaAdapter
|
52
|
+
I, [2007-09-02T18:11:55.089000 #4121220] INFO -- : loading SPARQL adapter
|
53
|
+
I, [2007-09-02T18:11:55.090000 #4121220] INFO -- : ConnectionPool: registering adapter of type sparql for class SparqlAdapter
|
54
|
+
I, [2007-09-02T18:11:55.242000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
55
|
+
D, [2007-09-02T18:11:55.243000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
56
|
+
I, [2007-09-02T18:11:55.481000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf1d0a3>
|
57
|
+
I, [2007-09-02T18:11:55.484000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
58
|
+
D, [2007-09-02T18:11:55.487000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
59
|
+
I, [2007-09-02T18:11:55.508000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
60
|
+
D, [2007-09-02T18:11:55.509000 #4121220] DEBUG -- : Reusing existing adapter
|
61
|
+
I, [2007-09-02T18:11:55.689000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x727219>
|
62
|
+
I, [2007-09-02T18:11:55.693000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
63
|
+
D, [2007-09-02T18:11:55.695000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
64
|
+
I, [2007-09-02T18:11:55.728000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x4286da>
|
65
|
+
I, [2007-09-02T18:11:55.776000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x727219>
|
66
|
+
I, [2007-09-02T18:11:55.779000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
67
|
+
D, [2007-09-02T18:11:55.782000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
68
|
+
I, [2007-09-02T18:11:55.799000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x35dd74>
|
69
|
+
I, [2007-09-02T18:11:55.801000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
70
|
+
D, [2007-09-02T18:11:55.802000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
71
|
+
I, [2007-09-02T18:11:55.825000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x2890f8>
|
72
|
+
I, [2007-09-02T18:11:55.828000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
73
|
+
D, [2007-09-02T18:11:55.830000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
74
|
+
I, [2007-09-02T18:11:55.847000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x493984>
|
75
|
+
I, [2007-09-02T18:11:55.852000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
76
|
+
D, [2007-09-02T18:11:55.854000 #4121220] DEBUG -- : Create a new adapter for parameters {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
77
|
+
I, [2007-09-02T18:11:57.042000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x85f1ac>
|
78
|
+
I, [2007-09-02T18:11:57.044000 #4121220] INFO -- : ConnectionPool: clear called
|
79
|
+
I, [2007-09-02T18:11:57.046000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :id=>"2", :model=>"superfunky", :type=>:jena}
|
80
|
+
D, [2007-09-02T18:11:57.049000 #4121220] DEBUG -- : Create a new adapter for parameters {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :id=>"2", :model=>"superfunky", :type=>:jena}
|
81
|
+
I, [2007-09-02T18:11:57.120000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x35a686>
|
82
|
+
I, [2007-09-02T18:11:57.122000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x493984>
|
83
|
+
I, [2007-09-02T18:11:57.126000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
84
|
+
D, [2007-09-02T18:11:57.128000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
85
|
+
I, [2007-09-02T18:11:57.159000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xeeb6f4>
|
86
|
+
I, [2007-09-02T18:11:57.162000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
87
|
+
D, [2007-09-02T18:11:57.164000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
88
|
+
I, [2007-09-02T18:11:57.184000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x17d906>
|
89
|
+
I, [2007-09-02T18:11:57.222000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:lucene=>true, :model=>"superfunky", :type=>:jena}
|
90
|
+
D, [2007-09-02T18:11:57.224000 #4121220] DEBUG -- : Create a new adapter for parameters {:lucene=>true, :model=>"superfunky", :type=>:jena}
|
91
|
+
I, [2007-09-02T18:11:57.330000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xb6962e>
|
92
|
+
I, [2007-09-02T18:11:57.331000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x17d906>
|
93
|
+
I, [2007-09-02T18:11:57.336000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
94
|
+
D, [2007-09-02T18:11:57.337000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
95
|
+
I, [2007-09-02T18:11:57.427000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xa51748>
|
96
|
+
I, [2007-09-02T18:11:57.430000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
97
|
+
D, [2007-09-02T18:11:57.431000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
98
|
+
I, [2007-09-02T18:11:57.447000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena}
|
99
|
+
D, [2007-09-02T18:11:57.449000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena}
|
100
|
+
I, [2007-09-02T18:11:57.451000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xe993ad>
|
101
|
+
I, [2007-09-02T18:11:57.457000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
102
|
+
D, [2007-09-02T18:11:57.458000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
103
|
+
I, [2007-09-02T18:11:57.513000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x37fa58>
|
104
|
+
I, [2007-09-02T18:11:57.518000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
105
|
+
D, [2007-09-02T18:11:57.520000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
106
|
+
I, [2007-09-02T18:11:57.891000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf726b9>
|
107
|
+
I, [2007-09-02T18:11:57.894000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
108
|
+
D, [2007-09-02T18:11:57.896000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
109
|
+
I, [2007-09-02T18:11:57.922000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xd0ce11>
|
110
|
+
I, [2007-09-02T18:11:57.927000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
111
|
+
D, [2007-09-02T18:11:57.928000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
112
|
+
I, [2007-09-02T18:11:57.957000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x451b94>
|
113
|
+
I, [2007-09-02T18:11:57.971000 #4121220] INFO -- : ConnectionPool: clear called
|
114
|
+
I, [2007-09-02T18:11:57.979000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
115
|
+
D, [2007-09-02T18:11:57.980000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
116
|
+
I, [2007-09-02T18:11:57.988000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x66341b>
|
117
|
+
I, [2007-09-02T18:11:57.999000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xd0ce11>
|
118
|
+
I, [2007-09-02T18:11:58.001000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
119
|
+
D, [2007-09-02T18:11:58.003000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
120
|
+
I, [2007-09-02T18:11:58.036000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xea020a>
|
121
|
+
I, [2007-09-02T18:11:58.039000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
122
|
+
D, [2007-09-02T18:11:58.041000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
123
|
+
I, [2007-09-02T18:11:58.055000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf843da>
|
124
|
+
I, [2007-09-02T18:11:58.059000 #4121220] INFO -- : ConnectionPool: clear called
|
125
|
+
I, [2007-09-02T18:11:58.060000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
126
|
+
D, [2007-09-02T18:11:58.062000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
127
|
+
I, [2007-09-02T18:11:58.071000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf699fc>
|
128
|
+
I, [2007-09-02T18:11:58.075000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xea020a>
|
129
|
+
I, [2007-09-02T18:11:58.077000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
130
|
+
D, [2007-09-02T18:11:58.080000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
131
|
+
I, [2007-09-02T18:11:58.117000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x27a448>
|
132
|
+
I, [2007-09-02T18:11:58.119000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
133
|
+
D, [2007-09-02T18:11:58.121000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
134
|
+
I, [2007-09-02T18:11:58.182000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x17bb9c>
|
135
|
+
I, [2007-09-02T18:11:58.185000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
136
|
+
D, [2007-09-02T18:11:58.186000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
137
|
+
I, [2007-09-02T18:11:58.231000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xe20e08>
|
138
|
+
I, [2007-09-02T18:11:58.234000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
139
|
+
D, [2007-09-02T18:11:58.235000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
140
|
+
I, [2007-09-02T18:11:58.279000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x13da8b>
|
141
|
+
I, [2007-09-02T18:11:58.283000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
142
|
+
D, [2007-09-02T18:11:58.285000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
143
|
+
I, [2007-09-02T18:11:58.304000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x1b7418>
|
144
|
+
I, [2007-09-02T18:11:58.308000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
145
|
+
D, [2007-09-02T18:11:58.309000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
146
|
+
I, [2007-09-02T18:11:58.325000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xb5c11>
|
147
|
+
I, [2007-09-02T18:13:25.364000 #4121220] INFO -- : ActiveRDF started, logging level: 0
|
148
|
+
I, [2007-09-02T18:13:25.399000 #4121220] INFO -- : Namespace: registering http://www.w3.org/1999/02/22-rdf-syntax-ns# to rdf
|
149
|
+
I, [2007-09-02T18:13:25.404000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2000/01/rdf-schema# to rdfs
|
150
|
+
I, [2007-09-02T18:13:25.406000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2002/07/owl# to owl
|
151
|
+
I, [2007-09-02T18:13:25.439000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2001/XMLSchema# to xsd
|
152
|
+
I, [2007-09-02T18:13:25.450000 #4121220] INFO -- : ActiveRDF is NOT installed as a Gem
|
153
|
+
I, [2007-09-02T18:13:26.589000 #4121220] INFO -- : ConnectionPool: registering adapter of type jena for class JenaAdapter
|
154
|
+
I, [2007-09-02T18:13:27.041000 #4121220] INFO -- : loading SPARQL adapter
|
155
|
+
I, [2007-09-02T18:13:27.043000 #4121220] INFO -- : ConnectionPool: registering adapter of type sparql for class SparqlAdapter
|
156
|
+
I, [2007-09-02T18:13:27.197000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
157
|
+
D, [2007-09-02T18:13:27.199000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
158
|
+
I, [2007-09-02T18:13:27.438000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf1d0a3>
|
159
|
+
I, [2007-09-02T18:13:27.441000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
160
|
+
D, [2007-09-02T18:13:27.442000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
161
|
+
I, [2007-09-02T18:13:27.466000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
162
|
+
D, [2007-09-02T18:13:27.468000 #4121220] DEBUG -- : Reusing existing adapter
|
163
|
+
I, [2007-09-02T18:13:27.648000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x727219>
|
164
|
+
I, [2007-09-02T18:13:27.650000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x727219>
|
165
|
+
I, [2007-09-02T18:13:27.653000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
166
|
+
D, [2007-09-02T18:13:27.657000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
167
|
+
I, [2007-09-02T18:13:27.719000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xa5061b>
|
168
|
+
I, [2007-09-02T18:13:27.723000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
169
|
+
D, [2007-09-02T18:13:27.725000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
170
|
+
I, [2007-09-02T18:13:27.746000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xba8e87>
|
171
|
+
I, [2007-09-02T18:13:27.751000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
172
|
+
D, [2007-09-02T18:13:27.752000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
173
|
+
I, [2007-09-02T18:13:27.777000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x721088>
|
174
|
+
I, [2007-09-02T18:13:27.780000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x721088>
|
175
|
+
I, [2007-09-02T18:13:27.783000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
176
|
+
D, [2007-09-02T18:13:27.785000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
177
|
+
I, [2007-09-02T18:13:27.813000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xec4ecd>
|
178
|
+
I, [2007-09-02T18:13:27.822000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
179
|
+
D, [2007-09-02T18:13:27.823000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
180
|
+
I, [2007-09-02T18:13:27.844000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xe02f98>
|
181
|
+
I, [2007-09-02T18:13:27.846000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xe02f98>
|
182
|
+
I, [2007-09-02T18:13:27.851000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
183
|
+
D, [2007-09-02T18:13:27.882000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
184
|
+
I, [2007-09-02T18:13:28.063000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xd62d1b>
|
185
|
+
I, [2007-09-02T18:13:28.066000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
186
|
+
D, [2007-09-02T18:13:28.067000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
187
|
+
I, [2007-09-02T18:13:28.085000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena}
|
188
|
+
D, [2007-09-02T18:13:28.087000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena}
|
189
|
+
I, [2007-09-02T18:13:28.090000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x5ffded>
|
190
|
+
I, [2007-09-02T18:13:28.093000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
191
|
+
D, [2007-09-02T18:13:28.095000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
192
|
+
I, [2007-09-02T18:13:28.227000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x366496>
|
193
|
+
I, [2007-09-02T18:13:28.230000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
194
|
+
D, [2007-09-02T18:13:28.232000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
195
|
+
I, [2007-09-02T18:13:28.674000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x1d4dc0>
|
196
|
+
I, [2007-09-02T18:13:28.677000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
197
|
+
D, [2007-09-02T18:13:28.678000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
198
|
+
I, [2007-09-02T18:13:28.697000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x9532fe>
|
199
|
+
I, [2007-09-02T18:13:28.700000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x9532fe>
|
200
|
+
I, [2007-09-02T18:13:28.704000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
201
|
+
D, [2007-09-02T18:13:28.706000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
202
|
+
I, [2007-09-02T18:13:28.721000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x16b458>
|
203
|
+
I, [2007-09-02T18:13:28.724000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x16b458>
|
204
|
+
I, [2007-09-02T18:13:28.727000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
205
|
+
D, [2007-09-02T18:13:28.728000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
206
|
+
I, [2007-09-02T18:13:28.796000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x6eec>
|
207
|
+
I, [2007-09-02T18:13:28.803000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
208
|
+
D, [2007-09-02T18:13:28.805000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
209
|
+
I, [2007-09-02T18:13:28.857000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xdb05df>
|
210
|
+
I, [2007-09-02T18:13:28.873000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
211
|
+
D, [2007-09-02T18:13:28.875000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
212
|
+
I, [2007-09-02T18:13:28.934000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xe90245>
|
213
|
+
I, [2007-09-02T18:13:28.937000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
214
|
+
D, [2007-09-02T18:13:28.946000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
215
|
+
I, [2007-09-02T18:13:28.992000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x365854>
|
216
|
+
I, [2007-09-02T18:13:28.998000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
217
|
+
D, [2007-09-02T18:13:29.000000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
218
|
+
I, [2007-09-02T18:13:29.016000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x8c349c>
|
219
|
+
I, [2007-09-02T18:13:29.021000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
220
|
+
D, [2007-09-02T18:13:29.023000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
221
|
+
I, [2007-09-02T18:13:29.057000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x41794b>
|
222
|
+
I, [2007-09-02T18:14:02.151000 #4121220] INFO -- : ActiveRDF started, logging level: 0
|
223
|
+
I, [2007-09-02T18:14:02.184000 #4121220] INFO -- : Namespace: registering http://www.w3.org/1999/02/22-rdf-syntax-ns# to rdf
|
224
|
+
I, [2007-09-02T18:14:02.189000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2000/01/rdf-schema# to rdfs
|
225
|
+
I, [2007-09-02T18:14:02.191000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2002/07/owl# to owl
|
226
|
+
I, [2007-09-02T18:14:02.217000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2001/XMLSchema# to xsd
|
227
|
+
I, [2007-09-02T18:14:02.228000 #4121220] INFO -- : ActiveRDF is NOT installed as a Gem
|
228
|
+
I, [2007-09-02T18:14:03.364000 #4121220] INFO -- : ConnectionPool: registering adapter of type jena for class JenaAdapter
|
229
|
+
I, [2007-09-02T18:14:03.809000 #4121220] INFO -- : loading SPARQL adapter
|
230
|
+
I, [2007-09-02T18:14:03.811000 #4121220] INFO -- : ConnectionPool: registering adapter of type sparql for class SparqlAdapter
|
231
|
+
I, [2007-09-02T18:14:03.962000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
232
|
+
D, [2007-09-02T18:14:03.963000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
233
|
+
I, [2007-09-02T18:14:04.195000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf1d0a3>
|
234
|
+
I, [2007-09-02T18:14:04.198000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
235
|
+
D, [2007-09-02T18:14:04.199000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
236
|
+
I, [2007-09-02T18:14:04.220000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
237
|
+
D, [2007-09-02T18:14:04.222000 #4121220] DEBUG -- : Reusing existing adapter
|
238
|
+
I, [2007-09-02T18:14:04.407000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x727219>
|
239
|
+
I, [2007-09-02T18:14:04.410000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
240
|
+
D, [2007-09-02T18:14:04.412000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
241
|
+
I, [2007-09-02T18:14:04.446000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x4286da>
|
242
|
+
I, [2007-09-02T18:14:04.489000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x727219>
|
243
|
+
I, [2007-09-02T18:14:04.491000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
244
|
+
D, [2007-09-02T18:14:04.494000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
245
|
+
I, [2007-09-02T18:14:04.512000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x35dd74>
|
246
|
+
I, [2007-09-02T18:14:04.515000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
247
|
+
D, [2007-09-02T18:14:04.517000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
248
|
+
I, [2007-09-02T18:14:04.539000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x2890f8>
|
249
|
+
I, [2007-09-02T18:14:04.542000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
250
|
+
D, [2007-09-02T18:14:04.543000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
251
|
+
I, [2007-09-02T18:14:04.561000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x493984>
|
252
|
+
I, [2007-09-02T18:14:04.565000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
253
|
+
D, [2007-09-02T18:14:04.567000 #4121220] DEBUG -- : Create a new adapter for parameters {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
254
|
+
I, [2007-09-02T18:14:05.761000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x85f1ac>
|
255
|
+
I, [2007-09-02T18:14:05.764000 #4121220] INFO -- : ConnectionPool: clear called
|
256
|
+
I, [2007-09-02T18:14:05.767000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :id=>"2", :model=>"superfunky", :type=>:jena}
|
257
|
+
D, [2007-09-02T18:14:05.769000 #4121220] DEBUG -- : Create a new adapter for parameters {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :id=>"2", :model=>"superfunky", :type=>:jena}
|
258
|
+
I, [2007-09-02T18:14:05.841000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xe6f59>
|
259
|
+
I, [2007-09-02T18:14:05.843000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x493984>
|
260
|
+
I, [2007-09-02T18:14:05.847000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
261
|
+
D, [2007-09-02T18:14:05.849000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
262
|
+
I, [2007-09-02T18:14:05.878000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x7739ae>
|
263
|
+
I, [2007-09-02T18:14:05.880000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
264
|
+
D, [2007-09-02T18:14:05.882000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
265
|
+
I, [2007-09-02T18:14:05.903000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x34123c>
|
266
|
+
I, [2007-09-02T18:14:05.939000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:lucene=>true, :model=>"superfunky", :type=>:jena}
|
267
|
+
D, [2007-09-02T18:14:05.940000 #4121220] DEBUG -- : Create a new adapter for parameters {:lucene=>true, :model=>"superfunky", :type=>:jena}
|
268
|
+
I, [2007-09-02T18:14:06.045000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xcce860>
|
269
|
+
I, [2007-09-02T18:14:06.047000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x34123c>
|
270
|
+
I, [2007-09-02T18:14:06.051000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
271
|
+
D, [2007-09-02T18:14:06.053000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
272
|
+
I, [2007-09-02T18:14:06.142000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x76d5d3>
|
273
|
+
I, [2007-09-02T18:14:06.145000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
274
|
+
D, [2007-09-02T18:14:06.146000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
275
|
+
I, [2007-09-02T18:14:06.163000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena}
|
276
|
+
D, [2007-09-02T18:14:06.165000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena}
|
277
|
+
I, [2007-09-02T18:14:06.167000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x71c6d6>
|
278
|
+
I, [2007-09-02T18:14:06.173000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
279
|
+
D, [2007-09-02T18:14:06.175000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
280
|
+
I, [2007-09-02T18:14:06.229000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xbf3adc>
|
281
|
+
I, [2007-09-02T18:14:06.236000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
282
|
+
D, [2007-09-02T18:14:06.238000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
283
|
+
I, [2007-09-02T18:14:06.676000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xd77fac>
|
284
|
+
I, [2007-09-02T18:14:06.680000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
285
|
+
D, [2007-09-02T18:14:06.682000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
286
|
+
I, [2007-09-02T18:14:06.707000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xa21282>
|
287
|
+
I, [2007-09-02T18:14:06.725000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
288
|
+
D, [2007-09-02T18:14:06.726000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
289
|
+
I, [2007-09-02T18:14:06.755000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x35d6af>
|
290
|
+
I, [2007-09-02T18:14:06.767000 #4121220] INFO -- : ConnectionPool: clear called
|
291
|
+
I, [2007-09-02T18:14:06.774000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
292
|
+
D, [2007-09-02T18:14:06.775000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
293
|
+
I, [2007-09-02T18:14:06.784000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xb02f33>
|
294
|
+
I, [2007-09-02T18:14:06.795000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xa21282>
|
295
|
+
I, [2007-09-02T18:14:06.797000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
296
|
+
D, [2007-09-02T18:14:06.798000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
297
|
+
I, [2007-09-02T18:14:06.830000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x4e390a>
|
298
|
+
I, [2007-09-02T18:14:06.832000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
299
|
+
D, [2007-09-02T18:14:06.835000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
300
|
+
I, [2007-09-02T18:14:06.850000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x3faf0f>
|
301
|
+
I, [2007-09-02T18:14:06.853000 #4121220] INFO -- : ConnectionPool: clear called
|
302
|
+
I, [2007-09-02T18:14:06.855000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
303
|
+
D, [2007-09-02T18:14:06.856000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
304
|
+
I, [2007-09-02T18:14:06.865000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x6914b7>
|
305
|
+
I, [2007-09-02T18:14:06.869000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x4e390a>
|
306
|
+
I, [2007-09-02T18:14:06.872000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
307
|
+
D, [2007-09-02T18:14:06.874000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
308
|
+
I, [2007-09-02T18:14:06.910000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xa48086>
|
309
|
+
I, [2007-09-02T18:14:06.913000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
310
|
+
D, [2007-09-02T18:14:06.914000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
311
|
+
I, [2007-09-02T18:14:06.973000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xadd17a>
|
312
|
+
I, [2007-09-02T18:14:06.975000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
313
|
+
D, [2007-09-02T18:14:06.977000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
314
|
+
I, [2007-09-02T18:14:07.026000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x407341>
|
315
|
+
I, [2007-09-02T18:14:07.028000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
316
|
+
D, [2007-09-02T18:14:07.030000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
317
|
+
I, [2007-09-02T18:14:07.075000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x4e7b4f>
|
318
|
+
I, [2007-09-02T18:14:07.079000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
319
|
+
D, [2007-09-02T18:14:07.080000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
320
|
+
I, [2007-09-02T18:14:07.099000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x5a0761>
|
321
|
+
I, [2007-09-02T18:14:07.103000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
322
|
+
D, [2007-09-02T18:14:07.105000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
323
|
+
I, [2007-09-02T18:14:07.121000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xbf98eb>
|
324
|
+
I, [2007-09-02T18:18:46.800000 #4121220] INFO -- : ActiveRDF started, logging level: 0
|
325
|
+
I, [2007-09-02T18:18:46.838000 #4121220] INFO -- : Namespace: registering http://www.w3.org/1999/02/22-rdf-syntax-ns# to rdf
|
326
|
+
I, [2007-09-02T18:18:46.840000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2000/01/rdf-schema# to rdfs
|
327
|
+
I, [2007-09-02T18:18:46.842000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2002/07/owl# to owl
|
328
|
+
I, [2007-09-02T18:18:46.870000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2001/XMLSchema# to xsd
|
329
|
+
I, [2007-09-02T18:18:46.881000 #4121220] INFO -- : ActiveRDF is NOT installed as a Gem
|
330
|
+
I, [2007-09-02T18:18:48.029000 #4121220] INFO -- : ConnectionPool: registering adapter of type jena for class JenaAdapter
|
331
|
+
I, [2007-09-02T18:18:48.481000 #4121220] INFO -- : loading SPARQL adapter
|
332
|
+
I, [2007-09-02T18:18:48.482000 #4121220] INFO -- : ConnectionPool: registering adapter of type sparql for class SparqlAdapter
|
333
|
+
I, [2007-09-02T18:18:48.623000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
334
|
+
D, [2007-09-02T18:18:48.624000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
335
|
+
I, [2007-09-02T18:18:48.870000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf1d0a3>
|
336
|
+
I, [2007-09-02T18:18:48.873000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
337
|
+
D, [2007-09-02T18:18:48.874000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
338
|
+
I, [2007-09-02T18:18:48.903000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
339
|
+
D, [2007-09-02T18:18:48.904000 #4121220] DEBUG -- : Reusing existing adapter
|
340
|
+
I, [2007-09-02T18:18:49.082000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x727219>
|
341
|
+
I, [2007-09-02T18:18:49.085000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
342
|
+
D, [2007-09-02T18:18:49.087000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
343
|
+
I, [2007-09-02T18:18:49.125000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x4286da>
|
344
|
+
I, [2007-09-02T18:18:49.164000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x727219>
|
345
|
+
I, [2007-09-02T18:18:49.167000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
346
|
+
D, [2007-09-02T18:18:49.170000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
347
|
+
I, [2007-09-02T18:18:49.187000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x8ca407>
|
348
|
+
I, [2007-09-02T18:18:49.190000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
349
|
+
D, [2007-09-02T18:18:49.191000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
350
|
+
I, [2007-09-02T18:18:49.214000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x92c979>
|
351
|
+
I, [2007-09-02T18:18:49.219000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
352
|
+
D, [2007-09-02T18:18:49.221000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
353
|
+
I, [2007-09-02T18:18:49.241000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xafed5e>
|
354
|
+
I, [2007-09-02T18:18:49.244000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
355
|
+
D, [2007-09-02T18:18:49.246000 #4121220] DEBUG -- : Create a new adapter for parameters {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
356
|
+
I, [2007-09-02T18:18:50.447000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x7665b1>
|
357
|
+
I, [2007-09-02T18:18:50.450000 #4121220] INFO -- : ConnectionPool: clear called
|
358
|
+
I, [2007-09-02T18:18:50.452000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :id=>"2", :model=>"superfunky", :type=>:jena}
|
359
|
+
D, [2007-09-02T18:18:50.454000 #4121220] DEBUG -- : Create a new adapter for parameters {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :id=>"2", :model=>"superfunky", :type=>:jena}
|
360
|
+
I, [2007-09-02T18:18:50.526000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf6f27e>
|
361
|
+
I, [2007-09-02T18:18:50.531000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xafed5e>
|
362
|
+
I, [2007-09-02T18:18:50.533000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
363
|
+
D, [2007-09-02T18:18:50.535000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
364
|
+
I, [2007-09-02T18:18:50.567000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x9f0c0e>
|
365
|
+
I, [2007-09-02T18:18:50.569000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
366
|
+
D, [2007-09-02T18:18:50.570000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
367
|
+
I, [2007-09-02T18:18:50.586000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xa732a4>
|
368
|
+
I, [2007-09-02T18:18:50.620000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:lucene=>true, :model=>"superfunky", :type=>:jena}
|
369
|
+
D, [2007-09-02T18:18:50.621000 #4121220] DEBUG -- : Create a new adapter for parameters {:lucene=>true, :model=>"superfunky", :type=>:jena}
|
370
|
+
I, [2007-09-02T18:18:50.726000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x49582b>
|
371
|
+
I, [2007-09-02T18:18:50.728000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xa732a4>
|
372
|
+
I, [2007-09-02T18:18:50.732000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
373
|
+
D, [2007-09-02T18:18:50.734000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
374
|
+
I, [2007-09-02T18:18:50.829000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf17f92>
|
375
|
+
I, [2007-09-02T18:18:50.831000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
376
|
+
D, [2007-09-02T18:18:50.833000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
377
|
+
I, [2007-09-02T18:18:50.849000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena}
|
378
|
+
D, [2007-09-02T18:18:50.850000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena}
|
379
|
+
I, [2007-09-02T18:18:50.853000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x74b704>
|
380
|
+
I, [2007-09-02T18:18:50.861000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
381
|
+
D, [2007-09-02T18:18:50.863000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
382
|
+
I, [2007-09-02T18:18:50.924000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x381d19>
|
383
|
+
I, [2007-09-02T18:18:50.927000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
384
|
+
D, [2007-09-02T18:18:50.930000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
385
|
+
I, [2007-09-02T18:18:51.290000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x81b236>
|
386
|
+
I, [2007-09-02T18:18:51.293000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
387
|
+
D, [2007-09-02T18:18:51.294000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
388
|
+
I, [2007-09-02T18:18:51.319000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xb71ee8>
|
389
|
+
I, [2007-09-02T18:18:51.324000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
390
|
+
D, [2007-09-02T18:18:51.326000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
391
|
+
I, [2007-09-02T18:18:51.355000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x70f044>
|
392
|
+
I, [2007-09-02T18:18:51.368000 #4121220] INFO -- : ConnectionPool: clear called
|
393
|
+
I, [2007-09-02T18:18:51.376000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
394
|
+
D, [2007-09-02T18:18:51.377000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
395
|
+
I, [2007-09-02T18:18:51.386000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xd98539>
|
396
|
+
I, [2007-09-02T18:18:51.397000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xb71ee8>
|
397
|
+
I, [2007-09-02T18:18:51.399000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
398
|
+
D, [2007-09-02T18:18:51.401000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
399
|
+
I, [2007-09-02T18:18:51.432000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x988054>
|
400
|
+
I, [2007-09-02T18:18:51.434000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
401
|
+
D, [2007-09-02T18:18:51.437000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
402
|
+
I, [2007-09-02T18:18:51.450000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x804eae>
|
403
|
+
I, [2007-09-02T18:18:51.454000 #4121220] INFO -- : ConnectionPool: clear called
|
404
|
+
I, [2007-09-02T18:18:51.456000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
405
|
+
D, [2007-09-02T18:18:51.457000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
406
|
+
I, [2007-09-02T18:18:51.467000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x740e2c>
|
407
|
+
I, [2007-09-02T18:18:51.472000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x988054>
|
408
|
+
I, [2007-09-02T18:18:51.475000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
409
|
+
D, [2007-09-02T18:18:51.477000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
410
|
+
I, [2007-09-02T18:18:51.512000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xa6fef6>
|
411
|
+
I, [2007-09-02T18:18:51.515000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
412
|
+
D, [2007-09-02T18:18:51.517000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
413
|
+
I, [2007-09-02T18:18:51.580000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x15ee3d>
|
414
|
+
I, [2007-09-02T18:18:51.582000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
415
|
+
D, [2007-09-02T18:18:51.584000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
416
|
+
I, [2007-09-02T18:18:51.637000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf59130>
|
417
|
+
I, [2007-09-02T18:18:51.639000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
418
|
+
D, [2007-09-02T18:18:51.641000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
419
|
+
I, [2007-09-02T18:18:51.683000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x800bd0>
|
420
|
+
I, [2007-09-02T18:18:51.686000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
421
|
+
D, [2007-09-02T18:18:51.687000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
422
|
+
I, [2007-09-02T18:18:51.707000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xd3e355>
|
423
|
+
I, [2007-09-02T18:18:51.711000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
424
|
+
D, [2007-09-02T18:18:51.713000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
425
|
+
I, [2007-09-02T18:18:51.729000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xab1b22>
|
426
|
+
I, [2007-09-02T18:20:42.297000 #4121220] INFO -- : ActiveRDF started, logging level: 0
|
427
|
+
I, [2007-09-02T18:20:42.341000 #4121220] INFO -- : Namespace: registering http://www.w3.org/1999/02/22-rdf-syntax-ns# to rdf
|
428
|
+
I, [2007-09-02T18:20:42.344000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2000/01/rdf-schema# to rdfs
|
429
|
+
I, [2007-09-02T18:20:42.346000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2002/07/owl# to owl
|
430
|
+
I, [2007-09-02T18:20:42.372000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2001/XMLSchema# to xsd
|
431
|
+
I, [2007-09-02T18:20:42.383000 #4121220] INFO -- : ActiveRDF is NOT installed as a Gem
|
432
|
+
I, [2007-09-02T18:20:43.520000 #4121220] INFO -- : ConnectionPool: registering adapter of type jena for class JenaAdapter
|
433
|
+
I, [2007-09-02T18:20:43.975000 #4121220] INFO -- : loading SPARQL adapter
|
434
|
+
I, [2007-09-02T18:20:43.977000 #4121220] INFO -- : ConnectionPool: registering adapter of type sparql for class SparqlAdapter
|
435
|
+
I, [2007-09-02T18:20:44.223000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
436
|
+
D, [2007-09-02T18:20:44.224000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
437
|
+
I, [2007-09-02T18:20:44.463000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf1d0a3>
|
438
|
+
I, [2007-09-02T18:20:44.570000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
439
|
+
D, [2007-09-02T18:20:44.657000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
440
|
+
I, [2007-09-02T18:20:44.794000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
441
|
+
D, [2007-09-02T18:20:44.868000 #4121220] DEBUG -- : Reusing existing adapter
|
442
|
+
I, [2007-09-02T18:20:45.046000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x432395>
|
443
|
+
I, [2007-09-02T18:20:45.049000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
444
|
+
D, [2007-09-02T18:20:45.051000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
445
|
+
I, [2007-09-02T18:20:45.084000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf78b7d>
|
446
|
+
I, [2007-09-02T18:20:45.128000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x432395>
|
447
|
+
I, [2007-09-02T18:20:45.130000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
448
|
+
D, [2007-09-02T18:20:45.132000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
449
|
+
I, [2007-09-02T18:20:45.149000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x40a15a>
|
450
|
+
I, [2007-09-02T18:20:45.152000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
451
|
+
D, [2007-09-02T18:20:45.153000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
452
|
+
I, [2007-09-02T18:20:45.177000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x92ba31>
|
453
|
+
I, [2007-09-02T18:20:45.181000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
454
|
+
D, [2007-09-02T18:20:45.182000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
455
|
+
I, [2007-09-02T18:20:45.203000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xc0bc26>
|
456
|
+
I, [2007-09-02T18:20:45.207000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
457
|
+
D, [2007-09-02T18:20:45.208000 #4121220] DEBUG -- : Create a new adapter for parameters {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
458
|
+
I, [2007-09-02T18:20:46.402000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf83c9>
|
459
|
+
I, [2007-09-02T18:20:46.405000 #4121220] INFO -- : ConnectionPool: clear called
|
460
|
+
I, [2007-09-02T18:20:46.407000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:id=>"2", :database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
461
|
+
D, [2007-09-02T18:20:46.408000 #4121220] DEBUG -- : Create a new adapter for parameters {:id=>"2", :database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
462
|
+
I, [2007-09-02T18:20:46.480000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x5dfa5e>
|
463
|
+
I, [2007-09-02T18:20:46.578000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xc0bc26>
|
464
|
+
I, [2007-09-02T18:20:46.583000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
465
|
+
D, [2007-09-02T18:20:46.585000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
466
|
+
I, [2007-09-02T18:20:46.624000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x1e4b65>
|
467
|
+
I, [2007-09-02T18:20:46.627000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
468
|
+
D, [2007-09-02T18:20:46.629000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
469
|
+
I, [2007-09-02T18:20:46.649000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xd420ad>
|
470
|
+
I, [2007-09-02T18:20:46.697000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:lucene=>true, :model=>"superfunky", :type=>:jena}
|
471
|
+
D, [2007-09-02T18:20:46.699000 #4121220] DEBUG -- : Create a new adapter for parameters {:lucene=>true, :model=>"superfunky", :type=>:jena}
|
472
|
+
I, [2007-09-02T18:20:46.804000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xee124f>
|
473
|
+
I, [2007-09-02T18:20:46.806000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xd420ad>
|
474
|
+
I, [2007-09-02T18:20:46.811000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
475
|
+
D, [2007-09-02T18:20:46.814000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
476
|
+
I, [2007-09-02T18:20:46.903000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x35d6af>
|
477
|
+
I, [2007-09-02T18:20:46.905000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
478
|
+
D, [2007-09-02T18:20:46.906000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
479
|
+
I, [2007-09-02T18:20:46.923000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena}
|
480
|
+
D, [2007-09-02T18:20:46.925000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena}
|
481
|
+
I, [2007-09-02T18:20:46.927000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xac9c80>
|
482
|
+
I, [2007-09-02T18:20:46.930000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
483
|
+
D, [2007-09-02T18:20:46.931000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
484
|
+
I, [2007-09-02T18:20:46.992000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xb08ca4>
|
485
|
+
I, [2007-09-02T18:20:46.999000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
486
|
+
D, [2007-09-02T18:20:47.000000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
487
|
+
I, [2007-09-02T18:20:47.361000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x1b0d65>
|
488
|
+
I, [2007-09-02T18:20:47.364000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
489
|
+
D, [2007-09-02T18:20:47.365000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
490
|
+
I, [2007-09-02T18:20:47.386000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x26cb7f>
|
491
|
+
I, [2007-09-02T18:20:47.394000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
492
|
+
D, [2007-09-02T18:20:47.395000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
493
|
+
I, [2007-09-02T18:20:47.422000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x26cb7f>
|
494
|
+
I, [2007-09-02T18:20:47.432000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
495
|
+
D, [2007-09-02T18:20:47.434000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
496
|
+
I, [2007-09-02T18:20:47.448000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x864dce>
|
497
|
+
I, [2007-09-02T18:20:47.450000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
498
|
+
D, [2007-09-02T18:20:47.452000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
499
|
+
I, [2007-09-02T18:20:47.477000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x864dce>
|
500
|
+
I, [2007-09-02T18:20:47.479000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
501
|
+
D, [2007-09-02T18:20:47.481000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
502
|
+
I, [2007-09-02T18:20:47.515000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xeaa03f>
|
503
|
+
I, [2007-09-02T18:20:47.518000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
504
|
+
D, [2007-09-02T18:20:47.520000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
505
|
+
I, [2007-09-02T18:20:47.555000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x557e48>
|
506
|
+
I, [2007-09-02T18:20:47.559000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
507
|
+
D, [2007-09-02T18:20:47.561000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
508
|
+
I, [2007-09-02T18:20:47.620000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xc6f01d>
|
509
|
+
I, [2007-09-02T18:20:47.625000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
510
|
+
D, [2007-09-02T18:20:47.628000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
511
|
+
I, [2007-09-02T18:20:47.668000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x5b20f0>
|
512
|
+
I, [2007-09-02T18:20:47.671000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
513
|
+
D, [2007-09-02T18:20:47.672000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
514
|
+
I, [2007-09-02T18:20:47.693000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xbe3008>
|
515
|
+
I, [2007-09-02T18:20:47.697000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
516
|
+
D, [2007-09-02T18:20:47.698000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
517
|
+
I, [2007-09-02T18:20:47.714000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xe79f7a>
|
518
|
+
I, [2007-09-02T18:23:38.032000 #4121220] INFO -- : ActiveRDF started, logging level: 0
|
519
|
+
I, [2007-09-02T18:23:38.066000 #4121220] INFO -- : Namespace: registering http://www.w3.org/1999/02/22-rdf-syntax-ns# to rdf
|
520
|
+
I, [2007-09-02T18:23:38.068000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2000/01/rdf-schema# to rdfs
|
521
|
+
I, [2007-09-02T18:23:38.070000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2002/07/owl# to owl
|
522
|
+
I, [2007-09-02T18:23:38.096000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2001/XMLSchema# to xsd
|
523
|
+
I, [2007-09-02T18:23:38.108000 #4121220] INFO -- : ActiveRDF is NOT installed as a Gem
|
524
|
+
I, [2007-09-02T18:23:39.239000 #4121220] INFO -- : ConnectionPool: registering adapter of type jena for class JenaAdapter
|
525
|
+
I, [2007-09-02T18:23:39.683000 #4121220] INFO -- : loading SPARQL adapter
|
526
|
+
I, [2007-09-02T18:23:39.685000 #4121220] INFO -- : ConnectionPool: registering adapter of type sparql for class SparqlAdapter
|
527
|
+
I, [2007-09-02T18:23:39.898000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
528
|
+
D, [2007-09-02T18:23:39.899000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
529
|
+
I, [2007-09-02T18:23:40.139000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf1d0a3>
|
530
|
+
I, [2007-09-02T18:23:40.142000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
531
|
+
D, [2007-09-02T18:23:40.144000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
532
|
+
I, [2007-09-02T18:23:40.164000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
533
|
+
D, [2007-09-02T18:23:40.166000 #4121220] DEBUG -- : Reusing existing adapter
|
534
|
+
I, [2007-09-02T18:23:40.343000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x727219>
|
535
|
+
I, [2007-09-02T18:23:40.347000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
536
|
+
D, [2007-09-02T18:23:40.348000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
537
|
+
I, [2007-09-02T18:23:40.386000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x4286da>
|
538
|
+
I, [2007-09-02T18:23:40.424000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x727219>
|
539
|
+
I, [2007-09-02T18:23:40.427000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
540
|
+
D, [2007-09-02T18:23:40.429000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
541
|
+
I, [2007-09-02T18:23:40.447000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf214f6>
|
542
|
+
I, [2007-09-02T18:23:40.449000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
543
|
+
D, [2007-09-02T18:23:40.451000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
544
|
+
I, [2007-09-02T18:23:40.479000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xe77448>
|
545
|
+
I, [2007-09-02T18:23:40.482000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
546
|
+
D, [2007-09-02T18:23:40.484000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
547
|
+
I, [2007-09-02T18:23:40.501000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xcc80>
|
548
|
+
I, [2007-09-02T18:23:40.505000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
549
|
+
D, [2007-09-02T18:23:40.506000 #4121220] DEBUG -- : Create a new adapter for parameters {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
550
|
+
I, [2007-09-02T18:23:43.267000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xe306a7>
|
551
|
+
I, [2007-09-02T18:23:43.269000 #4121220] INFO -- : ConnectionPool: clear called
|
552
|
+
I, [2007-09-02T18:23:43.271000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:id=>"2", :database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
553
|
+
D, [2007-09-02T18:23:43.273000 #4121220] DEBUG -- : Create a new adapter for parameters {:id=>"2", :database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
554
|
+
I, [2007-09-02T18:23:43.340000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xb49a2>
|
555
|
+
I, [2007-09-02T18:23:43.431000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xcc80>
|
556
|
+
I, [2007-09-02T18:23:43.439000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
557
|
+
D, [2007-09-02T18:23:43.441000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
558
|
+
I, [2007-09-02T18:23:43.473000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x6d79b4>
|
559
|
+
I, [2007-09-02T18:23:43.475000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
560
|
+
D, [2007-09-02T18:23:43.477000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
561
|
+
I, [2007-09-02T18:23:43.497000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xb37922>
|
562
|
+
I, [2007-09-02T18:23:43.530000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:lucene=>true, :model=>"superfunky", :type=>:jena}
|
563
|
+
D, [2007-09-02T18:23:43.532000 #4121220] DEBUG -- : Create a new adapter for parameters {:lucene=>true, :model=>"superfunky", :type=>:jena}
|
564
|
+
I, [2007-09-02T18:23:43.636000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x344b8e>
|
565
|
+
I, [2007-09-02T18:23:43.637000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xb37922>
|
566
|
+
I, [2007-09-02T18:23:43.644000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
567
|
+
D, [2007-09-02T18:23:43.645000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
568
|
+
I, [2007-09-02T18:23:43.737000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xa1efd6>
|
569
|
+
I, [2007-09-02T18:23:43.739000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
570
|
+
D, [2007-09-02T18:23:43.741000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
571
|
+
I, [2007-09-02T18:23:43.757000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena}
|
572
|
+
D, [2007-09-02T18:23:43.759000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena}
|
573
|
+
I, [2007-09-02T18:23:43.761000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x9fad04>
|
574
|
+
I, [2007-09-02T18:23:43.763000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
575
|
+
D, [2007-09-02T18:23:43.765000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
576
|
+
I, [2007-09-02T18:23:43.832000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x354c44>
|
577
|
+
I, [2007-09-02T18:23:43.838000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
578
|
+
D, [2007-09-02T18:23:43.840000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
579
|
+
I, [2007-09-02T18:23:44.267000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x6a6bdf>
|
580
|
+
I, [2007-09-02T18:23:44.270000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
581
|
+
D, [2007-09-02T18:23:44.271000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
582
|
+
I, [2007-09-02T18:23:44.291000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x35ab86>
|
583
|
+
I, [2007-09-02T18:23:44.298000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
584
|
+
D, [2007-09-02T18:23:44.299000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
585
|
+
I, [2007-09-02T18:23:44.328000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x602f39>
|
586
|
+
I, [2007-09-02T18:23:44.335000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x35ab86>
|
587
|
+
I, [2007-09-02T18:23:44.341000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
588
|
+
D, [2007-09-02T18:23:44.343000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
589
|
+
I, [2007-09-02T18:23:44.357000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x57d09e>
|
590
|
+
I, [2007-09-02T18:23:44.359000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
591
|
+
D, [2007-09-02T18:23:44.361000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
592
|
+
I, [2007-09-02T18:23:44.390000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xa37b98>
|
593
|
+
I, [2007-09-02T18:23:44.395000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x57d09e>
|
594
|
+
I, [2007-09-02T18:23:44.397000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
595
|
+
D, [2007-09-02T18:23:44.399000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
596
|
+
I, [2007-09-02T18:23:44.434000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xd5255c>
|
597
|
+
I, [2007-09-02T18:23:44.437000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
598
|
+
D, [2007-09-02T18:23:44.439000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
599
|
+
I, [2007-09-02T18:23:44.507000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xdf68e4>
|
600
|
+
I, [2007-09-02T18:23:44.509000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
601
|
+
D, [2007-09-02T18:23:44.510000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
602
|
+
I, [2007-09-02T18:23:44.563000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xed4ab3>
|
603
|
+
I, [2007-09-02T18:23:44.573000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
604
|
+
D, [2007-09-02T18:23:44.575000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
605
|
+
I, [2007-09-02T18:23:44.617000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x1f1d71>
|
606
|
+
I, [2007-09-02T18:23:44.619000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
607
|
+
D, [2007-09-02T18:23:44.621000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
608
|
+
I, [2007-09-02T18:23:44.635000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xacaaae>
|
609
|
+
I, [2007-09-02T18:23:44.639000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
610
|
+
D, [2007-09-02T18:23:44.641000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
611
|
+
I, [2007-09-02T18:23:44.659000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x49e15b>
|
612
|
+
I, [2007-09-02T18:25:24.845000 #4121220] INFO -- : ActiveRDF started, logging level: 0
|
613
|
+
I, [2007-09-02T18:25:24.878000 #4121220] INFO -- : Namespace: registering http://www.w3.org/1999/02/22-rdf-syntax-ns# to rdf
|
614
|
+
I, [2007-09-02T18:25:24.881000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2000/01/rdf-schema# to rdfs
|
615
|
+
I, [2007-09-02T18:25:24.883000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2002/07/owl# to owl
|
616
|
+
I, [2007-09-02T18:25:24.909000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2001/XMLSchema# to xsd
|
617
|
+
I, [2007-09-02T18:25:24.921000 #4121220] INFO -- : ActiveRDF is NOT installed as a Gem
|
618
|
+
I, [2007-09-02T18:25:26.066000 #4121220] INFO -- : ConnectionPool: registering adapter of type jena for class JenaAdapter
|
619
|
+
I, [2007-09-02T18:25:26.517000 #4121220] INFO -- : loading SPARQL adapter
|
620
|
+
I, [2007-09-02T18:25:26.519000 #4121220] INFO -- : ConnectionPool: registering adapter of type sparql for class SparqlAdapter
|
621
|
+
I, [2007-09-02T18:25:26.732000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
622
|
+
D, [2007-09-02T18:25:26.734000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
623
|
+
I, [2007-09-02T18:25:26.971000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf1d0a3>
|
624
|
+
I, [2007-09-02T18:25:26.974000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
625
|
+
D, [2007-09-02T18:25:26.976000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
626
|
+
I, [2007-09-02T18:25:27.003000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
627
|
+
D, [2007-09-02T18:25:27.005000 #4121220] DEBUG -- : Reusing existing adapter
|
628
|
+
I, [2007-09-02T18:25:27.185000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x432395>
|
629
|
+
I, [2007-09-02T18:25:27.188000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
630
|
+
D, [2007-09-02T18:25:27.190000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
631
|
+
I, [2007-09-02T18:25:27.223000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf78b7d>
|
632
|
+
I, [2007-09-02T18:25:27.267000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x432395>
|
633
|
+
I, [2007-09-02T18:25:27.269000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
634
|
+
D, [2007-09-02T18:25:27.271000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
635
|
+
I, [2007-09-02T18:25:27.288000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x40a15a>
|
636
|
+
I, [2007-09-02T18:25:27.290000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
637
|
+
D, [2007-09-02T18:25:27.292000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
638
|
+
I, [2007-09-02T18:25:27.315000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x92ba31>
|
639
|
+
I, [2007-09-02T18:25:27.319000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
640
|
+
D, [2007-09-02T18:25:27.320000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
641
|
+
I, [2007-09-02T18:25:27.341000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xc0bc26>
|
642
|
+
I, [2007-09-02T18:25:27.345000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
643
|
+
D, [2007-09-02T18:25:27.346000 #4121220] DEBUG -- : Create a new adapter for parameters {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
644
|
+
I, [2007-09-02T18:25:30.240000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x9463a0>
|
645
|
+
I, [2007-09-02T18:25:30.242000 #4121220] INFO -- : ConnectionPool: clear called
|
646
|
+
I, [2007-09-02T18:25:30.245000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:id=>"2", :database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
647
|
+
D, [2007-09-02T18:25:30.246000 #4121220] DEBUG -- : Create a new adapter for parameters {:id=>"2", :database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
648
|
+
I, [2007-09-02T18:25:30.313000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x69565d>
|
649
|
+
I, [2007-09-02T18:25:30.415000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xc0bc26>
|
650
|
+
I, [2007-09-02T18:25:30.423000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
651
|
+
D, [2007-09-02T18:25:30.425000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
652
|
+
I, [2007-09-02T18:25:30.457000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x51c0c9>
|
653
|
+
I, [2007-09-02T18:25:30.460000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
654
|
+
D, [2007-09-02T18:25:30.461000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
655
|
+
I, [2007-09-02T18:25:30.482000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf9ef24>
|
656
|
+
I, [2007-09-02T18:25:30.513000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:lucene=>true, :model=>"superfunky", :type=>:jena}
|
657
|
+
D, [2007-09-02T18:25:30.515000 #4121220] DEBUG -- : Create a new adapter for parameters {:lucene=>true, :model=>"superfunky", :type=>:jena}
|
658
|
+
I, [2007-09-02T18:25:30.625000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x20a129>
|
659
|
+
I, [2007-09-02T18:25:30.627000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf9ef24>
|
660
|
+
I, [2007-09-02T18:25:30.632000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
661
|
+
D, [2007-09-02T18:25:30.634000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
662
|
+
I, [2007-09-02T18:25:30.726000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x6415e2>
|
663
|
+
I, [2007-09-02T18:25:30.728000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
664
|
+
D, [2007-09-02T18:25:30.730000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
665
|
+
I, [2007-09-02T18:25:30.746000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena}
|
666
|
+
D, [2007-09-02T18:25:30.748000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena}
|
667
|
+
I, [2007-09-02T18:25:30.750000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x7d8ca>
|
668
|
+
I, [2007-09-02T18:25:30.752000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
669
|
+
D, [2007-09-02T18:25:30.754000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
670
|
+
I, [2007-09-02T18:25:30.819000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x3784ae>
|
671
|
+
I, [2007-09-02T18:25:30.826000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
672
|
+
D, [2007-09-02T18:25:30.827000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
673
|
+
I, [2007-09-02T18:25:31.215000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x93935b>
|
674
|
+
I, [2007-09-02T18:25:31.223000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
675
|
+
D, [2007-09-02T18:25:31.225000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
676
|
+
I, [2007-09-02T18:25:31.245000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf808ef>
|
677
|
+
I, [2007-09-02T18:25:31.251000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
678
|
+
D, [2007-09-02T18:25:31.253000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
679
|
+
I, [2007-09-02T18:25:31.284000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x65c4d0>
|
680
|
+
I, [2007-09-02T18:25:31.292000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf808ef>
|
681
|
+
I, [2007-09-02T18:25:31.298000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
682
|
+
D, [2007-09-02T18:25:31.299000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
683
|
+
I, [2007-09-02T18:25:31.314000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x358b43>
|
684
|
+
I, [2007-09-02T18:25:31.317000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
685
|
+
D, [2007-09-02T18:25:31.318000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
686
|
+
I, [2007-09-02T18:25:31.347000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x934b02>
|
687
|
+
I, [2007-09-02T18:25:31.354000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x358b43>
|
688
|
+
I, [2007-09-02T18:25:31.356000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
689
|
+
D, [2007-09-02T18:25:31.357000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
690
|
+
I, [2007-09-02T18:25:31.395000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xcd49df>
|
691
|
+
I, [2007-09-02T18:25:31.399000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
692
|
+
D, [2007-09-02T18:25:31.401000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
693
|
+
I, [2007-09-02T18:25:31.467000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x12f9e9>
|
694
|
+
I, [2007-09-02T18:25:31.471000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
695
|
+
D, [2007-09-02T18:25:31.472000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
696
|
+
I, [2007-09-02T18:25:31.534000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xb1161a>
|
697
|
+
I, [2007-09-02T18:25:31.544000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
698
|
+
D, [2007-09-02T18:25:31.545000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
699
|
+
I, [2007-09-02T18:25:31.593000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x536937>
|
700
|
+
I, [2007-09-02T18:25:31.596000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
701
|
+
D, [2007-09-02T18:25:31.597000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
702
|
+
I, [2007-09-02T18:25:31.612000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xce3613>
|
703
|
+
I, [2007-09-02T18:25:31.617000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
704
|
+
D, [2007-09-02T18:25:31.618000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
705
|
+
I, [2007-09-02T18:25:31.636000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x8ee032>
|
706
|
+
I, [2007-09-02T18:26:15.831000 #4121220] INFO -- : ActiveRDF started, logging level: 0
|
707
|
+
I, [2007-09-02T18:26:15.868000 #4121220] INFO -- : Namespace: registering http://www.w3.org/1999/02/22-rdf-syntax-ns# to rdf
|
708
|
+
I, [2007-09-02T18:26:15.871000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2000/01/rdf-schema# to rdfs
|
709
|
+
I, [2007-09-02T18:26:15.873000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2002/07/owl# to owl
|
710
|
+
I, [2007-09-02T18:26:15.899000 #4121220] INFO -- : Namespace: registering http://www.w3.org/2001/XMLSchema# to xsd
|
711
|
+
I, [2007-09-02T18:26:15.911000 #4121220] INFO -- : ActiveRDF is NOT installed as a Gem
|
712
|
+
I, [2007-09-02T18:26:17.051000 #4121220] INFO -- : ConnectionPool: registering adapter of type jena for class JenaAdapter
|
713
|
+
I, [2007-09-02T18:26:17.499000 #4121220] INFO -- : loading SPARQL adapter
|
714
|
+
I, [2007-09-02T18:26:17.501000 #4121220] INFO -- : ConnectionPool: registering adapter of type sparql for class SparqlAdapter
|
715
|
+
I, [2007-09-02T18:26:17.713000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
716
|
+
D, [2007-09-02T18:26:17.715000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
717
|
+
I, [2007-09-02T18:26:17.951000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf1d0a3>
|
718
|
+
I, [2007-09-02T18:26:17.954000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
719
|
+
D, [2007-09-02T18:26:17.955000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
720
|
+
I, [2007-09-02T18:26:17.982000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
721
|
+
D, [2007-09-02T18:26:17.984000 #4121220] DEBUG -- : Reusing existing adapter
|
722
|
+
I, [2007-09-02T18:26:18.162000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x432395>
|
723
|
+
I, [2007-09-02T18:26:18.165000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
724
|
+
D, [2007-09-02T18:26:18.167000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
725
|
+
I, [2007-09-02T18:26:18.200000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf78b7d>
|
726
|
+
I, [2007-09-02T18:26:18.244000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x432395>
|
727
|
+
I, [2007-09-02T18:26:18.246000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
728
|
+
D, [2007-09-02T18:26:18.248000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
729
|
+
I, [2007-09-02T18:26:18.266000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x40a15a>
|
730
|
+
I, [2007-09-02T18:26:18.269000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
731
|
+
D, [2007-09-02T18:26:18.271000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
732
|
+
I, [2007-09-02T18:26:18.293000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x92ba31>
|
733
|
+
I, [2007-09-02T18:26:18.299000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
734
|
+
D, [2007-09-02T18:26:18.301000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
735
|
+
I, [2007-09-02T18:26:18.322000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x6e159d>
|
736
|
+
I, [2007-09-02T18:26:18.324000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
737
|
+
D, [2007-09-02T18:26:18.326000 #4121220] DEBUG -- : Create a new adapter for parameters {:database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
738
|
+
I, [2007-09-02T18:26:21.109000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x9463a0>
|
739
|
+
I, [2007-09-02T18:26:21.111000 #4121220] INFO -- : ConnectionPool: clear called
|
740
|
+
I, [2007-09-02T18:26:21.113000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:id=>"2", :database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
741
|
+
D, [2007-09-02T18:26:21.115000 #4121220] DEBUG -- : Create a new adapter for parameters {:id=>"2", :database=>{:password=>"", :type=>"Derby", :url=>"jdbc:derby:superfunky;create=true", :username=>""}, :model=>"superfunky", :type=>:jena}
|
742
|
+
I, [2007-09-02T18:26:21.178000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x69565d>
|
743
|
+
I, [2007-09-02T18:26:21.280000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x6e159d>
|
744
|
+
I, [2007-09-02T18:26:21.288000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
745
|
+
D, [2007-09-02T18:26:21.290000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
746
|
+
I, [2007-09-02T18:26:21.322000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x51c0c9>
|
747
|
+
I, [2007-09-02T18:26:21.324000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
748
|
+
D, [2007-09-02T18:26:21.326000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
749
|
+
I, [2007-09-02T18:26:21.347000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf9ef24>
|
750
|
+
I, [2007-09-02T18:26:21.380000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:lucene=>true, :model=>"superfunky", :type=>:jena}
|
751
|
+
D, [2007-09-02T18:26:21.381000 #4121220] DEBUG -- : Create a new adapter for parameters {:lucene=>true, :model=>"superfunky", :type=>:jena}
|
752
|
+
I, [2007-09-02T18:26:21.487000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x20a129>
|
753
|
+
I, [2007-09-02T18:26:21.489000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf9ef24>
|
754
|
+
I, [2007-09-02T18:26:21.495000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
755
|
+
D, [2007-09-02T18:26:21.497000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
756
|
+
I, [2007-09-02T18:26:21.588000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x6415e2>
|
757
|
+
I, [2007-09-02T18:26:21.591000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
758
|
+
D, [2007-09-02T18:26:21.592000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
759
|
+
I, [2007-09-02T18:26:21.609000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:type=>:jena}
|
760
|
+
D, [2007-09-02T18:26:21.610000 #4121220] DEBUG -- : Create a new adapter for parameters {:type=>:jena}
|
761
|
+
I, [2007-09-02T18:26:21.613000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x7d8ca>
|
762
|
+
I, [2007-09-02T18:26:21.615000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
763
|
+
D, [2007-09-02T18:26:21.617000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
764
|
+
I, [2007-09-02T18:26:21.683000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x3784ae>
|
765
|
+
I, [2007-09-02T18:26:21.693000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
766
|
+
D, [2007-09-02T18:26:21.694000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
767
|
+
I, [2007-09-02T18:26:22.058000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x93935b>
|
768
|
+
I, [2007-09-02T18:26:22.061000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
769
|
+
D, [2007-09-02T18:26:22.062000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
770
|
+
I, [2007-09-02T18:26:22.082000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf808ef>
|
771
|
+
I, [2007-09-02T18:26:22.088000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
772
|
+
D, [2007-09-02T18:26:22.090000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
773
|
+
I, [2007-09-02T18:26:22.120000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x65c4d0>
|
774
|
+
I, [2007-09-02T18:26:22.134000 #4121220] INFO -- : ConnectionPool: clear called
|
775
|
+
I, [2007-09-02T18:26:22.139000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
776
|
+
D, [2007-09-02T18:26:22.141000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :type=>:jena}
|
777
|
+
I, [2007-09-02T18:26:22.149000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xe6a375>
|
778
|
+
I, [2007-09-02T18:26:22.153000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0xf808ef>
|
779
|
+
I, [2007-09-02T18:26:22.156000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:ontology=>:rdfs, :type=>:jena}
|
780
|
+
D, [2007-09-02T18:26:22.157000 #4121220] DEBUG -- : Create a new adapter for parameters {:ontology=>:rdfs, :type=>:jena}
|
781
|
+
I, [2007-09-02T18:26:22.188000 #4121220] INFO -- : ConnectionPool: remove_data_source with params: #<JenaAdapter:0x49bd46>
|
782
|
+
I, [2007-09-02T18:26:22.190000 #4121220] INFO -- : ConnectionPool: add_data_source with params: {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|
783
|
+
D, [2007-09-02T18:26:22.191000 #4121220] DEBUG -- : Create a new adapter for parameters {:file=>"/Users/benjamin/Development/activerdf/activerdf-jena/test/jena_persistence", :model=>"superfunky", :type=>:jena}
|