architect4r 0.3.2

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.
Files changed (110) hide show
  1. data/.gitignore +4 -0
  2. data/Gemfile +4 -0
  3. data/Gemfile.lock +53 -0
  4. data/Guardfile +10 -0
  5. data/License +20 -0
  6. data/README.md +62 -0
  7. data/Rakefile +40 -0
  8. data/ReleaseNotes.md +33 -0
  9. data/Roadmap.md +31 -0
  10. data/Specs.md +21 -0
  11. data/architect4r.gemspec +31 -0
  12. data/lib/architect4r.rb +66 -0
  13. data/lib/architect4r/adapters/carrier_wave.rb +64 -0
  14. data/lib/architect4r/core/configuration.rb +148 -0
  15. data/lib/architect4r/core/cypher_methods.rb +47 -0
  16. data/lib/architect4r/core/management_methods.rb +129 -0
  17. data/lib/architect4r/core/node_methods.rb +73 -0
  18. data/lib/architect4r/core/relationship_methods.rb +82 -0
  19. data/lib/architect4r/generic_node.rb +7 -0
  20. data/lib/architect4r/has_node.rb +80 -0
  21. data/lib/architect4r/instance_manager.rb +47 -0
  22. data/lib/architect4r/model/callbacks.rb +19 -0
  23. data/lib/architect4r/model/connection.rb +29 -0
  24. data/lib/architect4r/model/links_query_interface.rb +23 -0
  25. data/lib/architect4r/model/node.rb +117 -0
  26. data/lib/architect4r/model/persistency.rb +95 -0
  27. data/lib/architect4r/model/properties.rb +166 -0
  28. data/lib/architect4r/model/queries.rb +38 -0
  29. data/lib/architect4r/model/relationship.rb +105 -0
  30. data/lib/architect4r/model/relationships.rb +16 -0
  31. data/lib/architect4r/model/validations.rb +11 -0
  32. data/lib/architect4r/server.rb +96 -0
  33. data/lib/architect4r/version.rb +3 -0
  34. data/spec/architect4r_spec.rb +9 -0
  35. data/spec/core/configuration_spec.rb +54 -0
  36. data/spec/core/cypher_methods_spec.rb +29 -0
  37. data/spec/core/node_methods_spec.rb +47 -0
  38. data/spec/core/relationship_methods_spec.rb +92 -0
  39. data/spec/fixtures/architect4r.yml +21 -0
  40. data/spec/fixtures/graph.db.default/active_tx_log +1 -0
  41. data/spec/fixtures/graph.db.default/index/lucene-store.db +0 -0
  42. data/spec/fixtures/graph.db.default/index/lucene.log.1 +0 -0
  43. data/spec/fixtures/graph.db.default/index/lucene.log.active +0 -0
  44. data/spec/fixtures/graph.db.default/index/lucene.log.v0 +0 -0
  45. data/spec/fixtures/graph.db.default/index/lucene.log.v1 +0 -0
  46. data/spec/fixtures/graph.db.default/index/lucene.log.v2 +0 -0
  47. data/spec/fixtures/graph.db.default/lock +0 -0
  48. data/spec/fixtures/graph.db.default/messages.log +183 -0
  49. data/spec/fixtures/graph.db.default/neostore +0 -0
  50. data/spec/fixtures/graph.db.default/neostore.id +0 -0
  51. data/spec/fixtures/graph.db.default/neostore.nodestore.db +0 -0
  52. data/spec/fixtures/graph.db.default/neostore.nodestore.db.id +0 -0
  53. data/spec/fixtures/graph.db.default/neostore.propertystore.db +0 -0
  54. data/spec/fixtures/graph.db.default/neostore.propertystore.db.arrays +0 -0
  55. data/spec/fixtures/graph.db.default/neostore.propertystore.db.arrays.id +0 -0
  56. data/spec/fixtures/graph.db.default/neostore.propertystore.db.id +0 -0
  57. data/spec/fixtures/graph.db.default/neostore.propertystore.db.index +0 -0
  58. data/spec/fixtures/graph.db.default/neostore.propertystore.db.index.id +0 -0
  59. data/spec/fixtures/graph.db.default/neostore.propertystore.db.index.keys +0 -0
  60. data/spec/fixtures/graph.db.default/neostore.propertystore.db.index.keys.id +0 -0
  61. data/spec/fixtures/graph.db.default/neostore.propertystore.db.strings +0 -0
  62. data/spec/fixtures/graph.db.default/neostore.propertystore.db.strings.id +0 -0
  63. data/spec/fixtures/graph.db.default/neostore.relationshipstore.db +0 -0
  64. data/spec/fixtures/graph.db.default/neostore.relationshipstore.db.id +0 -0
  65. data/spec/fixtures/graph.db.default/neostore.relationshiptypestore.db +0 -0
  66. data/spec/fixtures/graph.db.default/neostore.relationshiptypestore.db.id +0 -0
  67. data/spec/fixtures/graph.db.default/neostore.relationshiptypestore.db.names +0 -0
  68. data/spec/fixtures/graph.db.default/neostore.relationshiptypestore.db.names.id +0 -0
  69. data/spec/fixtures/graph.db.default/nioneo_logical.log.1 +0 -0
  70. data/spec/fixtures/graph.db.default/nioneo_logical.log.active +0 -0
  71. data/spec/fixtures/graph.db.default/tm_tx_log.1 +0 -0
  72. data/spec/fixtures/graph.db.default/upgrade_backup/active_tx_log +1 -0
  73. data/spec/fixtures/graph.db.default/upgrade_backup/messages.log +142 -0
  74. data/spec/fixtures/graph.db.default/upgrade_backup/neostore +0 -0
  75. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.id +0 -0
  76. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.nodestore.db +0 -0
  77. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.nodestore.db.id +0 -0
  78. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.propertystore.db +0 -0
  79. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.propertystore.db.arrays +0 -0
  80. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.propertystore.db.arrays.id +0 -0
  81. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.propertystore.db.id +0 -0
  82. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.propertystore.db.index +0 -0
  83. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.propertystore.db.index.id +0 -0
  84. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.propertystore.db.index.keys +0 -0
  85. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.propertystore.db.index.keys.id +0 -0
  86. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.propertystore.db.strings +0 -0
  87. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.propertystore.db.strings.id +0 -0
  88. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.relationshipstore.db +0 -0
  89. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.relationshipstore.db.id +0 -0
  90. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.relationshiptypestore.db +0 -0
  91. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.relationshiptypestore.db.id +0 -0
  92. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.relationshiptypestore.db.names +0 -0
  93. data/spec/fixtures/graph.db.default/upgrade_backup/neostore.relationshiptypestore.db.names.id +0 -0
  94. data/spec/fixtures/graph.db.default/upgrade_backup/nioneo_logical.log.active +0 -0
  95. data/spec/fixtures/graph.db.default/upgrade_backup/nioneo_logical.log.v0 +0 -0
  96. data/spec/fixtures/graph.db.default/upgrade_backup/nioneo_logical.log.v1 +0 -0
  97. data/spec/fixtures/graph.db.default/upgrade_backup/nioneo_logical.log.v2 +0 -0
  98. data/spec/fixtures/graph.db.default/upgrade_backup/tm_tx_log.1 +0 -0
  99. data/spec/has_node_spec.rb +87 -0
  100. data/spec/model/links_query_interface_spec.rb +22 -0
  101. data/spec/model/links_spec.rb +26 -0
  102. data/spec/model/node_spec.rb +48 -0
  103. data/spec/model/persistency_spec.rb +98 -0
  104. data/spec/model/properties_spec.rb +165 -0
  105. data/spec/model/queries_spec.rb +50 -0
  106. data/spec/model/relationship_spec.rb +63 -0
  107. data/spec/model/validations_spec.rb +31 -0
  108. data/spec/server_spec.rb +33 -0
  109. data/spec/spec_helper.rb +115 -0
  110. metadata +377 -0
@@ -0,0 +1,21 @@
1
+ development:
2
+ host: localhost
3
+ port: 7474
4
+ log_level: DEBUG
5
+
6
+ test:
7
+ host: localhost
8
+ port: 7475
9
+ log_level: OFF
10
+
11
+ staging:
12
+ host: staging.dev
13
+ port: 8080
14
+ path: my_neo_instance
15
+ log_level: WARNING
16
+
17
+ production:
18
+ host: localhost
19
+ port: 8080
20
+ path: my_neo_instance
21
+ log_level: WARNING
@@ -0,0 +1 @@
1
+ tm_tx_log.1
File without changes
@@ -0,0 +1,183 @@
1
+ Sat Sep 10 18:32:01 CEST 2011: Creating new db @ /Users/namxam/packages/neo4j-community-1.4.1.test/data/graph.db/neostore
2
+ Sat Sep 10 18:32:01 CEST 2011: Opened [/Users/namxam/packages/neo4j-community-1.4.1.test/data/graph.db/nioneo_logical.log.1] clean empty log, version=0
3
+ Sat Sep 10 18:32:01 CEST 2011: Opened [/Users/namxam/packages/neo4j-community-1.4.1.test/data/graph.db/index/lucene.log.1] clean empty log, version=0
4
+ Sat Sep 10 18:32:01 CEST 2011: TM new log: tm_tx_log.1
5
+ Sat Sep 10 18:32:01 CEST 2011: --- CONFIGURATION START ---
6
+ Sat Sep 10 18:32:01 CEST 2011: Physical mem: 8192MB, Heap size: 1763MB
7
+ Sat Sep 10 18:32:01 CEST 2011: Kernel version: Neo4j - Graph Database Kernel 1.4.1
8
+ Sat Sep 10 18:32:01 CEST 2011: Neo4j - Graph Database Kernel 1.4.1
9
+ Sat Sep 10 18:32:01 CEST 2011: Operating System: Mac OS X; version: 10.7.1; arch: x86_64; cpus: 2
10
+ Sat Sep 10 18:32:01 CEST 2011: VM Name: Java HotSpot(TM) 64-Bit Server VM
11
+ Sat Sep 10 18:32:01 CEST 2011: VM Vendor: Apple Inc.
12
+ Sat Sep 10 18:32:01 CEST 2011: VM Version: 20.1-b02-383
13
+ Sat Sep 10 18:32:01 CEST 2011: Boot Class Path: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsfd.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/classes.jar:/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework/Resources/Java/JavaRuntimeSupport.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/ui.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/laf.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/sunrsasign.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsse.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/charsets.jar
14
+ Sat Sep 10 18:32:01 CEST 2011: Class Path: /Users/namxam/packages/neo4jtest/lib/geronimo-jta_1.1_spec-1.1.1.jar:/Users/namxam/packages/neo4jtest/lib/lucene-core-3.1.0.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-community-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-cypher-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-graph-algo-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-graph-matching-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-jmx-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-kernel-1.4.1-tests.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-kernel-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-lucene-index-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-shell-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-udc-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/org.apache.servicemix.bundles.jline-0.9.94_1.jar:/Users/namxam/packages/neo4jtest/lib/scala-library-2.9.0-1.jar:/Users/namxam/packages/neo4jtest/lib/server-api-1.4.1.jar:/Users/namxam/packages/neo4jtest/system/lib/antlr-2.7.7.jar:/Users/namxam/packages/neo4jtest/system/lib/asm-3.1.jar:/Users/namxam/packages/neo4jtest/system/lib/asm-analysis-3.2.jar:/Users/namxam/packages/neo4jtest/system/lib/asm-commons-3.2.jar:/Users/namxam/packages/neo4jtest/system/lib/asm-tree-3.2.jar:/Users/namxam/packages/neo4jtest/system/lib/asm-util-3.2.jar:/Users/namxam/packages/neo4jtest/system/lib/blueprints-core-0.8.jar:/Users/namxam/packages/neo4jtest/system/lib/blueprints-neo4j-graph-0.8.jar:/Users/namxam/packages/neo4jtest/system/lib/commons-beanutils-1.8.0.jar:/Users/namxam/packages/neo4jtest/system/lib/commons-beanutils-core-1.8.0.jar:/Users/namxam/packages/neo4jtest/system/lib/commons-collections-3.2.1.jar:/Users/namxam/packages/neo4jtest/system/lib/commons-configuration-1.6.jar:/Users/namxam/packages/neo4jtest/system/lib/commons-digester-1.8.1.jar:/Users/namxam/packages/neo4jtest/system/lib/commons-io-1.4.jar:/Users/namxam/packages/neo4jtest/system/lib/commons-lang-2.4.jar:/Users/namxam/packages/neo4jtest/system/lib/commons-logging-1.1.1.jar:/Users/namxam/packages/neo4jtest/system/lib/de.huxhorn.lilith.3rdparty.rrd4j-2.0.5.jar:/Users/namxam/packages/neo4jtest/system/lib/gremlin-1.1.jar:/Users/namxam/packages/neo4jtest/system/lib/groovy-1.7.8.jar:/Users/namxam/packages/neo4jtest/system/lib/jackson-core-asl-1.6.1.jar:/Users/namxam/packages/neo4jtest/system/lib/jackson-jaxrs-1.6.1.jar:/Users/namxam/packages/neo4jtest/system/lib/jackson-mapper-asl-1.6.1.jar:/Users/namxam/packages/neo4jtest/system/lib/jansi-1.5.jar:/Users/namxam/packages/neo4jtest/system/lib/jcl-over-slf4j-1.6.1.jar:/Users/namxam/packages/neo4jtest/system/lib/jersey-client-1.4.jar:/Users/namxam/packages/neo4jtest/system/lib/jersey-core-1.3.jar:/Users/namxam/packages/neo4jtest/system/lib/jersey-multipart-1.3.jar:/Users/namxam/packages/neo4jtest/system/lib/jersey-server-1.3.jar:/Users/namxam/packages/neo4jtest/system/lib/jettison-1.3.jar:/Users/namxam/packages/neo4jtest/system/lib/jetty-6.1.25.jar:/Users/namxam/packages/neo4jtest/system/lib/jetty-util-6.1.25.jar:/Users/namxam/packages/neo4jtest/system/lib/jsr311-api-1.1.1.jar:/Users/namxam/packages/neo4jtest/system/lib/log4j-over-slf4j-1.6.1.jar:/Users/namxam/packages/neo4jtest/system/lib/mimepull-1.4.jar:/Users/namxam/packages/neo4jtest/system/lib/neo4j-cypher-plugin-1.4.1.jar:/Users/namxam/packages/neo4jtest/system/lib/neo4j-gremlin-plugin-1.4.1.jar:/Users/namxam/packages/neo4jtest/system/lib/neo4j-server-1.4.1-static-web.jar:/Users/namxam/packages/neo4jtest/system/lib/neo4j-server-1.4.1.jar:/Users/namxam/packages/neo4jtest/system/lib/org.apache.felix.fileinstall-3.0.2.jar:/Users/namxam/packages/neo4jtest/system/lib/org.apache.felix.framework-3.0.2.jar:/Users/namxam/packages/neo4jtest/system/lib/org.apache.felix.main-3.0.2.jar:/Users/namxam/packages/neo4jtest/system/lib/org.osgi.compendium-4.1.0.jar:/Users/namxam/packages/neo4jtest/system/lib/org.osgi.core-4.1.0.jar:/Users/namxam/packages/neo4jtest/system/lib/pipes-0.6.jar:/Users/namxam/packages/neo4jtest/system/lib/servlet-api-2.5-20081211.jar:/Users/namxam/packages/neo4jtest/system/lib/slf4j-api-1.6.1.jar:/Users/namxam/packages/neo4jtest/system/lib/slf4j-jdk14-1.6.1.jar:/Users/namxam/packages/neo4jtest/system/lib/stax-api-1.0.1.jar
15
+ Sat Sep 10 18:32:01 CEST 2011: Library Path: /usr/local/mysql/lib::.:/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java
16
+ Sat Sep 10 18:32:01 CEST 2011: Garbage Collector: PS Scavenge: [PS Eden Space, PS Survivor Space]
17
+ Sat Sep 10 18:32:01 CEST 2011: Garbage Collector: PS MarkSweep: [PS Eden Space, PS Survivor Space, PS Old Gen, PS Perm Gen]
18
+ Sat Sep 10 18:32:01 CEST 2011: VM Arguments: [-Xserver, -Dorg.neo4j.server.properties=conf/neo4j-server.properties, -Djava.util.logging.config.file=conf/logging.properties, -Dlog4j.configuration=file:conf/log4j.properties, -Dorg.neo4j.server.properties=/Users/namxam/packages/neo4jtest/conf/neo4j-server.properties, -Djava.util.logging.config.file=/Users/namxam/packages/neo4jtest/conf/logging.properties, -Dneo4j.home=/Users/namxam/packages/neo4jtest, -Dneo4j.instance=/Users/namxam/packages/neo4jtest]
19
+ Sat Sep 10 18:32:01 CEST 2011:
20
+ Sat Sep 10 18:32:01 CEST 2011: create=true
21
+ Sat Sep 10 18:32:01 CEST 2011: enable_remote_shell=true
22
+ Sat Sep 10 18:32:01 CEST 2011: keep_logical_logs=true
23
+ Sat Sep 10 18:32:01 CEST 2011: logical_log=/Users/namxam/packages/neo4j-community-1.4.1.test/data/graph.db/nioneo_logical.log
24
+ Sat Sep 10 18:32:01 CEST 2011: neo4j.ext.udc.source=server
25
+ Sat Sep 10 18:32:01 CEST 2011: neo_store=/Users/namxam/packages/neo4j-community-1.4.1.test/data/graph.db/neostore
26
+ Sat Sep 10 18:32:01 CEST 2011: neostore.nodestore.db.mapped_memory=25M
27
+ Sat Sep 10 18:32:01 CEST 2011: neostore.propertystore.db.arrays.mapped_memory=130M
28
+ Sat Sep 10 18:32:01 CEST 2011: neostore.propertystore.db.index.keys.mapped_memory=1M
29
+ Sat Sep 10 18:32:01 CEST 2011: neostore.propertystore.db.index.mapped_memory=1M
30
+ Sat Sep 10 18:32:01 CEST 2011: neostore.propertystore.db.mapped_memory=90M
31
+ Sat Sep 10 18:32:01 CEST 2011: neostore.propertystore.db.strings.mapped_memory=130M
32
+ Sat Sep 10 18:32:01 CEST 2011: neostore.relationshipstore.db.mapped_memory=50M
33
+ Sat Sep 10 18:32:01 CEST 2011: node_auto_indexing=false
34
+ Sat Sep 10 18:32:01 CEST 2011: rebuild_idgenerators_fast=true
35
+ Sat Sep 10 18:32:01 CEST 2011: relationship_auto_indexing=false
36
+ Sat Sep 10 18:32:01 CEST 2011: store_dir=/Users/namxam/packages/neo4j-community-1.4.1.test/data/graph.db
37
+ Sat Sep 10 18:32:01 CEST 2011: use_memory_mapped_buffers=true
38
+ Sat Sep 10 18:32:01 CEST 2011: --- CONFIGURATION END ---
39
+ Sat Sep 10 18:32:01 CEST 2011: Extension org.neo4j.kernel.KernelExtension[kernel jmx] loaded ok
40
+ Sat Sep 10 18:32:01 CEST 2011: Extension org.neo4j.kernel.KernelExtension[dummy] loaded ok
41
+ Sat Sep 10 18:32:01 CEST 2011: Extension org.neo4j.kernel.KernelExtension[other dummy] loaded ok
42
+ Sat Sep 10 18:32:02 CEST 2011: Extension org.neo4j.kernel.KernelExtension[shell] loaded ok
43
+ Sat Sep 10 18:32:02 CEST 2011: Extension org.neo4j.kernel.KernelExtension[kernel udc] loaded ok
44
+ Sat Sep 10 18:37:06 CEST 2011: Closed log /Users/namxam/packages/neo4j-community-1.4.1.test/data/graph.db/nioneo_logical.log
45
+ Sat Sep 10 18:37:06 CEST 2011: NeoStore closed
46
+ Sat Sep 10 18:37:06 CEST 2011: Closed log /Users/namxam/packages/neo4j-community-1.4.1.test/data/graph.db/index/lucene.log
47
+ Sat Sep 10 18:37:06 CEST 2011: NeoStore closed
48
+ Sat Sep 10 18:37:06 CEST 2011: TM shutting down
49
+ Thu Oct 20 19:31:26 CEST 2011: Opened [/Users/namxam/src/architect4r/neo4j_server/data/graph.db/nioneo_logical.log.1] clean empty log, version=1
50
+ Thu Oct 20 19:31:26 CEST 2011: Opened [/Users/namxam/src/architect4r/neo4j_server/data/graph.db/index/lucene.log.1] clean empty log, version=1
51
+ Thu Oct 20 19:31:26 CEST 2011: TM opening log: /Users/namxam/src/architect4r/neo4j_server/data/graph.db/tm_tx_log.1
52
+ Thu Oct 20 19:31:27 CEST 2011: --- CONFIGURATION START ---
53
+ Thu Oct 20 19:31:27 CEST 2011: Physical mem: 8192MB, Heap size: 1763MB
54
+ Thu Oct 20 19:31:27 CEST 2011: Kernel version: Neo4j - Graph Database Kernel 1.4.1
55
+ Thu Oct 20 19:31:27 CEST 2011: Neo4j - Graph Database Kernel 1.4.1
56
+ Thu Oct 20 19:31:27 CEST 2011: Operating System: Mac OS X; version: 10.7.2; arch: x86_64; cpus: 2
57
+ Thu Oct 20 19:31:27 CEST 2011: VM Name: Java HotSpot(TM) 64-Bit Server VM
58
+ Thu Oct 20 19:31:27 CEST 2011: VM Vendor: Apple Inc.
59
+ Thu Oct 20 19:31:27 CEST 2011: VM Version: 20.1-b02-383
60
+ Thu Oct 20 19:31:27 CEST 2011: Boot Class Path: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsfd.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/classes.jar:/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework/Resources/Java/JavaRuntimeSupport.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/ui.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/laf.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/sunrsasign.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsse.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/charsets.jar
61
+ Thu Oct 20 19:31:27 CEST 2011: Class Path: /Users/namxam/src/architect4r/neo4j_server/lib/geronimo-jta_1.1_spec-1.1.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/lucene-core-3.1.0.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-community-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-cypher-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-graph-algo-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-graph-matching-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-jmx-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-kernel-1.4.1-tests.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-kernel-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-lucene-index-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-shell-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-udc-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/org.apache.servicemix.bundles.jline-0.9.94_1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/scala-library-2.9.0-1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/server-api-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/antlr-2.7.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-3.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-analysis-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-commons-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-tree-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-util-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/blueprints-core-0.8.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/blueprints-neo4j-graph-0.8.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-beanutils-1.8.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-beanutils-core-1.8.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-collections-3.2.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-configuration-1.6.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-digester-1.8.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-io-1.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-lang-2.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-logging-1.1.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/de.huxhorn.lilith.3rdparty.rrd4j-2.0.5.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/gremlin-1.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/groovy-1.7.8.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jackson-core-asl-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jackson-jaxrs-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jackson-mapper-asl-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jansi-1.5.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jcl-over-slf4j-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-client-1.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-core-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-multipart-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-server-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jettison-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jetty-6.1.25.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jetty-util-6.1.25.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jsr311-api-1.1.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/log4j-over-slf4j-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/mimepull-1.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-cypher-plugin-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-gremlin-plugin-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-server-1.4.1-static-web.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-server-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.apache.felix.fileinstall-3.0.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.apache.felix.framework-3.0.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.apache.felix.main-3.0.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.osgi.compendium-4.1.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.osgi.core-4.1.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/pipes-0.6.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/servlet-api-2.5-20081211.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/slf4j-api-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/slf4j-jdk14-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/stax-api-1.0.1.jar
62
+ Thu Oct 20 19:31:27 CEST 2011: Library Path: /usr/local/mysql/lib::.:/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java
63
+ Thu Oct 20 19:31:27 CEST 2011: Garbage Collector: PS Scavenge: [PS Eden Space, PS Survivor Space]
64
+ Thu Oct 20 19:31:27 CEST 2011: Garbage Collector: PS MarkSweep: [PS Eden Space, PS Survivor Space, PS Old Gen, PS Perm Gen]
65
+ Thu Oct 20 19:31:27 CEST 2011: VM Arguments: [-Xserver, -Dorg.neo4j.server.properties=conf/neo4j-server.properties, -Djava.util.logging.config.file=conf/logging.properties, -Dlog4j.configuration=file:conf/log4j.properties, -Dorg.neo4j.server.properties=/Users/namxam/src/architect4r/neo4j_server/conf/neo4j-server.properties, -Djava.util.logging.config.file=/Users/namxam/src/architect4r/neo4j_server/conf/logging.properties, -Dneo4j.home=/Users/namxam/src/architect4r/neo4j_server, -Dneo4j.instance=/Users/namxam/src/architect4r/neo4j_server]
66
+ Thu Oct 20 19:31:27 CEST 2011:
67
+ Thu Oct 20 19:31:27 CEST 2011: create=true
68
+ Thu Oct 20 19:31:27 CEST 2011: enable_remote_shell=true
69
+ Thu Oct 20 19:31:27 CEST 2011: keep_logical_logs=true
70
+ Thu Oct 20 19:31:27 CEST 2011: logical_log=/Users/namxam/src/architect4r/neo4j_server/data/graph.db/nioneo_logical.log
71
+ Thu Oct 20 19:31:27 CEST 2011: neo4j.ext.udc.source=server
72
+ Thu Oct 20 19:31:27 CEST 2011: neo_store=/Users/namxam/src/architect4r/neo4j_server/data/graph.db/neostore
73
+ Thu Oct 20 19:31:27 CEST 2011: neostore.nodestore.db.mapped_memory=25M
74
+ Thu Oct 20 19:31:27 CEST 2011: neostore.propertystore.db.arrays.mapped_memory=130M
75
+ Thu Oct 20 19:31:27 CEST 2011: neostore.propertystore.db.index.keys.mapped_memory=1M
76
+ Thu Oct 20 19:31:27 CEST 2011: neostore.propertystore.db.index.mapped_memory=1M
77
+ Thu Oct 20 19:31:27 CEST 2011: neostore.propertystore.db.mapped_memory=90M
78
+ Thu Oct 20 19:31:27 CEST 2011: neostore.propertystore.db.strings.mapped_memory=130M
79
+ Thu Oct 20 19:31:27 CEST 2011: neostore.relationshipstore.db.mapped_memory=50M
80
+ Thu Oct 20 19:31:27 CEST 2011: node_auto_indexing=false
81
+ Thu Oct 20 19:31:27 CEST 2011: rebuild_idgenerators_fast=true
82
+ Thu Oct 20 19:31:27 CEST 2011: relationship_auto_indexing=false
83
+ Thu Oct 20 19:31:27 CEST 2011: store_dir=/Users/namxam/src/architect4r/neo4j_server/data/graph.db
84
+ Thu Oct 20 19:31:27 CEST 2011: use_memory_mapped_buffers=true
85
+ Thu Oct 20 19:31:27 CEST 2011: --- CONFIGURATION END ---
86
+ Thu Oct 20 19:31:27 CEST 2011: Extension org.neo4j.kernel.KernelExtension[kernel jmx] loaded ok
87
+ Thu Oct 20 19:31:27 CEST 2011: Extension org.neo4j.kernel.KernelExtension[dummy] loaded ok
88
+ Thu Oct 20 19:31:27 CEST 2011: Extension org.neo4j.kernel.KernelExtension[other dummy] loaded ok
89
+ Thu Oct 20 19:31:27 CEST 2011: Extension org.neo4j.kernel.KernelExtension[shell] loaded ok
90
+ Thu Oct 20 19:31:27 CEST 2011: Extension org.neo4j.kernel.KernelExtension[kernel udc] loaded ok
91
+ Thu Oct 20 19:34:05 CEST 2011: Closed log /Users/namxam/src/architect4r/neo4j_server/data/graph.db/nioneo_logical.log
92
+ Thu Oct 20 19:34:05 CEST 2011: NeoStore closed
93
+ Thu Oct 20 19:34:05 CEST 2011: Closed log /Users/namxam/src/architect4r/neo4j_server/data/graph.db/index/lucene.log
94
+ Thu Oct 20 19:34:05 CEST 2011: NeoStore closed
95
+ Thu Oct 20 19:34:05 CEST 2011: TM shutting down
96
+ Thu Oct 20 19:34:56 CEST 2011: Opened [/Users/namxam/src/architect4r/neo4j_server/data/graph.db/nioneo_logical.log.1] clean empty log, version=2
97
+ Thu Oct 20 19:34:56 CEST 2011: Opened [/Users/namxam/src/architect4r/neo4j_server/data/graph.db/index/lucene.log.1] clean empty log, version=2
98
+ Thu Oct 20 19:34:56 CEST 2011: TM opening log: /Users/namxam/src/architect4r/neo4j_server/data/graph.db/tm_tx_log.1
99
+ Thu Oct 20 19:34:56 CEST 2011: --- CONFIGURATION START ---
100
+ Thu Oct 20 19:34:56 CEST 2011: Physical mem: 8192MB, Heap size: 1763MB
101
+ Thu Oct 20 19:34:56 CEST 2011: Kernel version: Neo4j - Graph Database Kernel 1.4.1
102
+ Thu Oct 20 19:34:56 CEST 2011: Neo4j - Graph Database Kernel 1.4.1
103
+ Thu Oct 20 19:34:56 CEST 2011: Operating System: Mac OS X; version: 10.7.2; arch: x86_64; cpus: 2
104
+ Thu Oct 20 19:34:56 CEST 2011: VM Name: Java HotSpot(TM) 64-Bit Server VM
105
+ Thu Oct 20 19:34:56 CEST 2011: VM Vendor: Apple Inc.
106
+ Thu Oct 20 19:34:56 CEST 2011: VM Version: 20.1-b02-383
107
+ Thu Oct 20 19:34:56 CEST 2011: Boot Class Path: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsfd.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/classes.jar:/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework/Resources/Java/JavaRuntimeSupport.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/ui.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/laf.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/sunrsasign.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsse.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/charsets.jar
108
+ Thu Oct 20 19:34:56 CEST 2011: Class Path: /Users/namxam/src/architect4r/neo4j_server/lib/geronimo-jta_1.1_spec-1.1.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/lucene-core-3.1.0.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-community-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-cypher-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-graph-algo-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-graph-matching-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-jmx-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-kernel-1.4.1-tests.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-kernel-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-lucene-index-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-shell-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-udc-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/org.apache.servicemix.bundles.jline-0.9.94_1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/scala-library-2.9.0-1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/server-api-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/antlr-2.7.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-3.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-analysis-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-commons-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-tree-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-util-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/blueprints-core-0.8.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/blueprints-neo4j-graph-0.8.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-beanutils-1.8.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-beanutils-core-1.8.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-collections-3.2.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-configuration-1.6.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-digester-1.8.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-io-1.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-lang-2.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-logging-1.1.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/de.huxhorn.lilith.3rdparty.rrd4j-2.0.5.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/gremlin-1.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/groovy-1.7.8.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jackson-core-asl-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jackson-jaxrs-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jackson-mapper-asl-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jansi-1.5.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jcl-over-slf4j-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-client-1.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-core-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-multipart-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-server-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jettison-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jetty-6.1.25.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jetty-util-6.1.25.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jsr311-api-1.1.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/log4j-over-slf4j-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/mimepull-1.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-cypher-plugin-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-gremlin-plugin-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-server-1.4.1-static-web.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-server-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.apache.felix.fileinstall-3.0.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.apache.felix.framework-3.0.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.apache.felix.main-3.0.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.osgi.compendium-4.1.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.osgi.core-4.1.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/pipes-0.6.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/servlet-api-2.5-20081211.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/slf4j-api-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/slf4j-jdk14-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/stax-api-1.0.1.jar
109
+ Thu Oct 20 19:34:56 CEST 2011: Library Path: /usr/local/mysql/lib::.:/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java
110
+ Thu Oct 20 19:34:56 CEST 2011: Garbage Collector: PS Scavenge: [PS Eden Space, PS Survivor Space]
111
+ Thu Oct 20 19:34:56 CEST 2011: Garbage Collector: PS MarkSweep: [PS Eden Space, PS Survivor Space, PS Old Gen, PS Perm Gen]
112
+ Thu Oct 20 19:34:56 CEST 2011: VM Arguments: [-Xserver, -Dorg.neo4j.server.properties=conf/neo4j-server.properties, -Djava.util.logging.config.file=conf/logging.properties, -Dlog4j.configuration=file:conf/log4j.properties, -Dorg.neo4j.server.properties=/Users/namxam/src/architect4r/neo4j_server/conf/neo4j-server.properties, -Djava.util.logging.config.file=/Users/namxam/src/architect4r/neo4j_server/conf/logging.properties, -Dneo4j.home=/Users/namxam/src/architect4r/neo4j_server, -Dneo4j.instance=/Users/namxam/src/architect4r/neo4j_server]
113
+ Thu Oct 20 19:34:56 CEST 2011:
114
+ Thu Oct 20 19:34:56 CEST 2011: create=true
115
+ Thu Oct 20 19:34:56 CEST 2011: enable_remote_shell=true
116
+ Thu Oct 20 19:34:56 CEST 2011: keep_logical_logs=true
117
+ Thu Oct 20 19:34:56 CEST 2011: logical_log=/Users/namxam/src/architect4r/neo4j_server/data/graph.db/nioneo_logical.log
118
+ Thu Oct 20 19:34:56 CEST 2011: neo4j.ext.udc.source=server
119
+ Thu Oct 20 19:34:56 CEST 2011: neo_store=/Users/namxam/src/architect4r/neo4j_server/data/graph.db/neostore
120
+ Thu Oct 20 19:34:56 CEST 2011: neostore.nodestore.db.mapped_memory=25M
121
+ Thu Oct 20 19:34:56 CEST 2011: neostore.propertystore.db.arrays.mapped_memory=130M
122
+ Thu Oct 20 19:34:56 CEST 2011: neostore.propertystore.db.index.keys.mapped_memory=1M
123
+ Thu Oct 20 19:34:56 CEST 2011: neostore.propertystore.db.index.mapped_memory=1M
124
+ Thu Oct 20 19:34:56 CEST 2011: neostore.propertystore.db.mapped_memory=90M
125
+ Thu Oct 20 19:34:56 CEST 2011: neostore.propertystore.db.strings.mapped_memory=130M
126
+ Thu Oct 20 19:34:56 CEST 2011: neostore.relationshipstore.db.mapped_memory=50M
127
+ Thu Oct 20 19:34:56 CEST 2011: node_auto_indexing=false
128
+ Thu Oct 20 19:34:56 CEST 2011: rebuild_idgenerators_fast=true
129
+ Thu Oct 20 19:34:56 CEST 2011: relationship_auto_indexing=false
130
+ Thu Oct 20 19:34:56 CEST 2011: store_dir=/Users/namxam/src/architect4r/neo4j_server/data/graph.db
131
+ Thu Oct 20 19:34:56 CEST 2011: use_memory_mapped_buffers=true
132
+ Thu Oct 20 19:34:56 CEST 2011: --- CONFIGURATION END ---
133
+ Thu Oct 20 19:34:57 CEST 2011: Extension org.neo4j.kernel.KernelExtension[kernel jmx] loaded ok
134
+ Thu Oct 20 19:34:57 CEST 2011: Extension org.neo4j.kernel.KernelExtension[dummy] loaded ok
135
+ Thu Oct 20 19:34:57 CEST 2011: Extension org.neo4j.kernel.KernelExtension[other dummy] loaded ok
136
+ Thu Oct 20 19:34:57 CEST 2011: Extension org.neo4j.kernel.KernelExtension[shell] loaded ok
137
+ Thu Oct 20 19:34:57 CEST 2011: Extension org.neo4j.kernel.KernelExtension[kernel udc] loaded ok
138
+ Thu Oct 20 19:35:46 CEST 2011: Closed log /Users/namxam/src/architect4r/neo4j_server/data/graph.db/nioneo_logical.log
139
+ Thu Oct 20 19:35:46 CEST 2011: NeoStore closed
140
+ Thu Oct 20 19:35:46 CEST 2011: Closed log /Users/namxam/src/architect4r/neo4j_server/data/graph.db/index/lucene.log
141
+ Thu Oct 20 19:35:46 CEST 2011: NeoStore closed
142
+ Thu Oct 20 19:35:46 CEST 2011: TM shutting down
143
+ 2011-10-21 15:22:02.336+0200: Opened [/Users/namxam/src/architect4r/neo4j_server/data/graph.db/nioneo_logical.log.1] clean empty log, version=0, lastTxId=1
144
+ 2011-10-21 15:22:02.375+0200: Opened [/Users/namxam/src/architect4r/neo4j_server/data/graph.db/index/lucene.log.1] clean empty log, version=3, lastTxId=1
145
+ 2011-10-21 15:22:02.379+0200: TM new log: tm_tx_log.1
146
+ 2011-10-21 15:22:02.399+0200: --- CONFIGURATION START ---
147
+ 2011-10-21 15:22:02.399+0200: Physical mem: 8192MB, Heap size: 56MB
148
+ 2011-10-21 15:22:02.401+0200: Kernel version: Neo4j - Graph Database Kernel 1.5.M02
149
+ 2011-10-21 15:22:02.401+0200: Neo4j - Graph Database Kernel 1.5.M02
150
+ 2011-10-21 15:22:02.404+0200: Operating System: Mac OS X; version: 10.7.2; arch: x86_64; cpus: 2
151
+ 2011-10-21 15:22:02.404+0200: VM Name: Java HotSpot(TM) 64-Bit Server VM
152
+ 2011-10-21 15:22:02.404+0200: VM Vendor: Apple Inc.
153
+ 2011-10-21 15:22:02.404+0200: VM Version: 20.1-b02-383
154
+ 2011-10-21 15:22:02.404+0200: Boot Class Path: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsfd.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/classes.jar:/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework/Resources/Java/JavaRuntimeSupport.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/ui.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/laf.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/sunrsasign.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsse.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/charsets.jar
155
+ 2011-10-21 15:22:02.404+0200: Class Path: /Users/namxam/src/architect4r/neo4j_server/lib/geronimo-jta_1.1_spec-1.1.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/lucene-core-3.1.0.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-community-1.5.M02.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-cypher-1.5.M02.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-graph-algo-1.5.M02.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-graph-matching-1.5.M02.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-jmx-1.5.M02.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-kernel-1.5.M02.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-lucene-index-1.5.M02.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-shell-1.5.M02.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-udc-1.5.M02.jar:/Users/namxam/src/architect4r/neo4j_server/lib/org.apache.servicemix.bundles.jline-0.9.94_1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/scala-library-2.9.0-1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/server-api-1.5.M02.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/antlr-2.7.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-3.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-analysis-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-commons-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-tree-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-util-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/avalon-framework-api-4.3.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/avalon-framework-impl-4.3.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/batik-anim-1.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/batik-awt-util-1.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/batik-bridge-1.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/batik-css-1.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/batik-dom-1.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/batik-ext-1.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/batik-extension-1.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/batik-gvt-1.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/batik-parser-1.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/batik-script-1.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/batik-svg-dom-1.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/batik-svggen-1.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/batik-transcoder-1.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/batik-util-1.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/batik-xml-1.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/blueprints-core-1.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/blueprints-neo4j-graph-1.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-beanutils-1.8.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-beanutils-core-1.8.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-collections-3.2.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-configuration-1.6.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-digester-1.8.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-io-1.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-lang-2.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-logging-1.1.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/fop-1.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/gremlin-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/groovy-1.8.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jackson-core-asl-1.8.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jackson-jaxrs-1.8.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jackson-mapper-asl-1.8.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jansi-1.5.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jcl-over-slf4j-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-core-1.9.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-multipart-1.9.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-server-1.9.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jettison-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jetty-6.1.25.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jetty-util-6.1.25.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jsr311-api-1.1.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/log4j-over-slf4j-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/mimepull-1.6.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-cypher-plugin-1.5.M02.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-gremlin-plugin-1.5.M02.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-server-1.5.M02-static-web.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-server-1.5.M02.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/pipes-0.8.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/rrd4j-2.0.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/servlet-api-2.5-20081211.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/slf4j-api-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/slf4j-jdk14-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/stax-api-1.0.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/xalan-2.6.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/xml-apis-1.3.04.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/xml-apis-ext-1.3.04.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/xmlgraphics-commons-1.4.jar
156
+ 2011-10-21 15:22:02.406+0200: Library Path: /usr/local/mysql/lib::.:/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java
157
+ 2011-10-21 15:22:02.410+0200: Garbage Collector: PS Scavenge: [PS Eden Space, PS Survivor Space]
158
+ 2011-10-21 15:22:02.410+0200: Garbage Collector: PS MarkSweep: [PS Eden Space, PS Survivor Space, PS Old Gen, PS Perm Gen]
159
+ 2011-10-21 15:22:02.411+0200: VM Arguments: [-Xserver, -XX:+DisableExplicitGC, -Dorg.neo4j.server.properties=conf/neo4j-server.properties, -Djava.util.logging.config.file=conf/logging.properties, -Xms3m, -Xmx64m, -Dlog4j.configuration=file:conf/log4j.properties, -Dorg.neo4j.server.properties=/Users/namxam/src/architect4r/neo4j_server/conf/neo4j-server.properties, -Djava.util.logging.config.file=/Users/namxam/src/architect4r/neo4j_server/conf/logging.properties, -Dneo4j.home=/Users/namxam/src/architect4r/neo4j_server, -Dneo4j.instance=/Users/namxam/src/architect4r/neo4j_server]
160
+ 2011-10-21 15:22:02.411+0200:
161
+ 2011-10-21 15:22:02.413+0200: allow_store_upgrade=true
162
+ 2011-10-21 15:22:02.414+0200: create=true
163
+ 2011-10-21 15:22:02.414+0200: enable_remote_shell=true
164
+ 2011-10-21 15:22:02.414+0200: keep_logical_logs=true
165
+ 2011-10-21 15:22:02.414+0200: logical_log=/Users/namxam/src/architect4r/neo4j_server/data/graph.db/nioneo_logical.log
166
+ 2011-10-21 15:22:02.414+0200: neo4j.ext.udc.source=server
167
+ 2011-10-21 15:22:02.414+0200: neo_store=/Users/namxam/src/architect4r/neo4j_server/data/graph.db/neostore
168
+ 2011-10-21 15:22:02.414+0200: neostore.nodestore.db.mapped_memory=20M
169
+ 2011-10-21 15:22:02.414+0200: neostore.propertystore.db.arrays.mapped_memory=130M
170
+ 2011-10-21 15:22:02.414+0200: neostore.propertystore.db.index.keys.mapped_memory=1M
171
+ 2011-10-21 15:22:02.414+0200: neostore.propertystore.db.index.mapped_memory=1M
172
+ 2011-10-21 15:22:02.415+0200: neostore.propertystore.db.mapped_memory=90M
173
+ 2011-10-21 15:22:02.415+0200: neostore.propertystore.db.strings.mapped_memory=130M
174
+ 2011-10-21 15:22:02.415+0200: neostore.relationshipstore.db.mapped_memory=100M
175
+ 2011-10-21 15:22:02.415+0200: node_auto_indexing=false
176
+ 2011-10-21 15:22:02.415+0200: rebuild_idgenerators_fast=true
177
+ 2011-10-21 15:22:02.415+0200: relationship_auto_indexing=false
178
+ 2011-10-21 15:22:02.415+0200: store_dir=/Users/namxam/src/architect4r/neo4j_server/data/graph.db
179
+ 2011-10-21 15:22:02.415+0200: use_memory_mapped_buffers=true
180
+ 2011-10-21 15:22:02.415+0200: --- CONFIGURATION END ---
181
+ 2011-10-21 15:22:02.506+0200: Extension org.neo4j.kernel.KernelExtension[kernel jmx] loaded ok
182
+ 2011-10-21 15:22:02.774+0200: Extension org.neo4j.kernel.KernelExtension[shell] loaded ok
183
+ 2011-10-21 15:22:02.776+0200: Extension org.neo4j.kernel.KernelExtension[kernel udc] loaded ok
File without changes
@@ -0,0 +1,142 @@
1
+ Sat Sep 10 18:32:01 CEST 2011: Creating new db @ /Users/namxam/packages/neo4j-community-1.4.1.test/data/graph.db/neostore
2
+ Sat Sep 10 18:32:01 CEST 2011: Opened [/Users/namxam/packages/neo4j-community-1.4.1.test/data/graph.db/nioneo_logical.log.1] clean empty log, version=0
3
+ Sat Sep 10 18:32:01 CEST 2011: Opened [/Users/namxam/packages/neo4j-community-1.4.1.test/data/graph.db/index/lucene.log.1] clean empty log, version=0
4
+ Sat Sep 10 18:32:01 CEST 2011: TM new log: tm_tx_log.1
5
+ Sat Sep 10 18:32:01 CEST 2011: --- CONFIGURATION START ---
6
+ Sat Sep 10 18:32:01 CEST 2011: Physical mem: 8192MB, Heap size: 1763MB
7
+ Sat Sep 10 18:32:01 CEST 2011: Kernel version: Neo4j - Graph Database Kernel 1.4.1
8
+ Sat Sep 10 18:32:01 CEST 2011: Neo4j - Graph Database Kernel 1.4.1
9
+ Sat Sep 10 18:32:01 CEST 2011: Operating System: Mac OS X; version: 10.7.1; arch: x86_64; cpus: 2
10
+ Sat Sep 10 18:32:01 CEST 2011: VM Name: Java HotSpot(TM) 64-Bit Server VM
11
+ Sat Sep 10 18:32:01 CEST 2011: VM Vendor: Apple Inc.
12
+ Sat Sep 10 18:32:01 CEST 2011: VM Version: 20.1-b02-383
13
+ Sat Sep 10 18:32:01 CEST 2011: Boot Class Path: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsfd.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/classes.jar:/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework/Resources/Java/JavaRuntimeSupport.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/ui.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/laf.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/sunrsasign.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsse.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/charsets.jar
14
+ Sat Sep 10 18:32:01 CEST 2011: Class Path: /Users/namxam/packages/neo4jtest/lib/geronimo-jta_1.1_spec-1.1.1.jar:/Users/namxam/packages/neo4jtest/lib/lucene-core-3.1.0.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-community-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-cypher-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-graph-algo-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-graph-matching-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-jmx-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-kernel-1.4.1-tests.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-kernel-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-lucene-index-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-shell-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/neo4j-udc-1.4.1.jar:/Users/namxam/packages/neo4jtest/lib/org.apache.servicemix.bundles.jline-0.9.94_1.jar:/Users/namxam/packages/neo4jtest/lib/scala-library-2.9.0-1.jar:/Users/namxam/packages/neo4jtest/lib/server-api-1.4.1.jar:/Users/namxam/packages/neo4jtest/system/lib/antlr-2.7.7.jar:/Users/namxam/packages/neo4jtest/system/lib/asm-3.1.jar:/Users/namxam/packages/neo4jtest/system/lib/asm-analysis-3.2.jar:/Users/namxam/packages/neo4jtest/system/lib/asm-commons-3.2.jar:/Users/namxam/packages/neo4jtest/system/lib/asm-tree-3.2.jar:/Users/namxam/packages/neo4jtest/system/lib/asm-util-3.2.jar:/Users/namxam/packages/neo4jtest/system/lib/blueprints-core-0.8.jar:/Users/namxam/packages/neo4jtest/system/lib/blueprints-neo4j-graph-0.8.jar:/Users/namxam/packages/neo4jtest/system/lib/commons-beanutils-1.8.0.jar:/Users/namxam/packages/neo4jtest/system/lib/commons-beanutils-core-1.8.0.jar:/Users/namxam/packages/neo4jtest/system/lib/commons-collections-3.2.1.jar:/Users/namxam/packages/neo4jtest/system/lib/commons-configuration-1.6.jar:/Users/namxam/packages/neo4jtest/system/lib/commons-digester-1.8.1.jar:/Users/namxam/packages/neo4jtest/system/lib/commons-io-1.4.jar:/Users/namxam/packages/neo4jtest/system/lib/commons-lang-2.4.jar:/Users/namxam/packages/neo4jtest/system/lib/commons-logging-1.1.1.jar:/Users/namxam/packages/neo4jtest/system/lib/de.huxhorn.lilith.3rdparty.rrd4j-2.0.5.jar:/Users/namxam/packages/neo4jtest/system/lib/gremlin-1.1.jar:/Users/namxam/packages/neo4jtest/system/lib/groovy-1.7.8.jar:/Users/namxam/packages/neo4jtest/system/lib/jackson-core-asl-1.6.1.jar:/Users/namxam/packages/neo4jtest/system/lib/jackson-jaxrs-1.6.1.jar:/Users/namxam/packages/neo4jtest/system/lib/jackson-mapper-asl-1.6.1.jar:/Users/namxam/packages/neo4jtest/system/lib/jansi-1.5.jar:/Users/namxam/packages/neo4jtest/system/lib/jcl-over-slf4j-1.6.1.jar:/Users/namxam/packages/neo4jtest/system/lib/jersey-client-1.4.jar:/Users/namxam/packages/neo4jtest/system/lib/jersey-core-1.3.jar:/Users/namxam/packages/neo4jtest/system/lib/jersey-multipart-1.3.jar:/Users/namxam/packages/neo4jtest/system/lib/jersey-server-1.3.jar:/Users/namxam/packages/neo4jtest/system/lib/jettison-1.3.jar:/Users/namxam/packages/neo4jtest/system/lib/jetty-6.1.25.jar:/Users/namxam/packages/neo4jtest/system/lib/jetty-util-6.1.25.jar:/Users/namxam/packages/neo4jtest/system/lib/jsr311-api-1.1.1.jar:/Users/namxam/packages/neo4jtest/system/lib/log4j-over-slf4j-1.6.1.jar:/Users/namxam/packages/neo4jtest/system/lib/mimepull-1.4.jar:/Users/namxam/packages/neo4jtest/system/lib/neo4j-cypher-plugin-1.4.1.jar:/Users/namxam/packages/neo4jtest/system/lib/neo4j-gremlin-plugin-1.4.1.jar:/Users/namxam/packages/neo4jtest/system/lib/neo4j-server-1.4.1-static-web.jar:/Users/namxam/packages/neo4jtest/system/lib/neo4j-server-1.4.1.jar:/Users/namxam/packages/neo4jtest/system/lib/org.apache.felix.fileinstall-3.0.2.jar:/Users/namxam/packages/neo4jtest/system/lib/org.apache.felix.framework-3.0.2.jar:/Users/namxam/packages/neo4jtest/system/lib/org.apache.felix.main-3.0.2.jar:/Users/namxam/packages/neo4jtest/system/lib/org.osgi.compendium-4.1.0.jar:/Users/namxam/packages/neo4jtest/system/lib/org.osgi.core-4.1.0.jar:/Users/namxam/packages/neo4jtest/system/lib/pipes-0.6.jar:/Users/namxam/packages/neo4jtest/system/lib/servlet-api-2.5-20081211.jar:/Users/namxam/packages/neo4jtest/system/lib/slf4j-api-1.6.1.jar:/Users/namxam/packages/neo4jtest/system/lib/slf4j-jdk14-1.6.1.jar:/Users/namxam/packages/neo4jtest/system/lib/stax-api-1.0.1.jar
15
+ Sat Sep 10 18:32:01 CEST 2011: Library Path: /usr/local/mysql/lib::.:/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java
16
+ Sat Sep 10 18:32:01 CEST 2011: Garbage Collector: PS Scavenge: [PS Eden Space, PS Survivor Space]
17
+ Sat Sep 10 18:32:01 CEST 2011: Garbage Collector: PS MarkSweep: [PS Eden Space, PS Survivor Space, PS Old Gen, PS Perm Gen]
18
+ Sat Sep 10 18:32:01 CEST 2011: VM Arguments: [-Xserver, -Dorg.neo4j.server.properties=conf/neo4j-server.properties, -Djava.util.logging.config.file=conf/logging.properties, -Dlog4j.configuration=file:conf/log4j.properties, -Dorg.neo4j.server.properties=/Users/namxam/packages/neo4jtest/conf/neo4j-server.properties, -Djava.util.logging.config.file=/Users/namxam/packages/neo4jtest/conf/logging.properties, -Dneo4j.home=/Users/namxam/packages/neo4jtest, -Dneo4j.instance=/Users/namxam/packages/neo4jtest]
19
+ Sat Sep 10 18:32:01 CEST 2011:
20
+ Sat Sep 10 18:32:01 CEST 2011: create=true
21
+ Sat Sep 10 18:32:01 CEST 2011: enable_remote_shell=true
22
+ Sat Sep 10 18:32:01 CEST 2011: keep_logical_logs=true
23
+ Sat Sep 10 18:32:01 CEST 2011: logical_log=/Users/namxam/packages/neo4j-community-1.4.1.test/data/graph.db/nioneo_logical.log
24
+ Sat Sep 10 18:32:01 CEST 2011: neo4j.ext.udc.source=server
25
+ Sat Sep 10 18:32:01 CEST 2011: neo_store=/Users/namxam/packages/neo4j-community-1.4.1.test/data/graph.db/neostore
26
+ Sat Sep 10 18:32:01 CEST 2011: neostore.nodestore.db.mapped_memory=25M
27
+ Sat Sep 10 18:32:01 CEST 2011: neostore.propertystore.db.arrays.mapped_memory=130M
28
+ Sat Sep 10 18:32:01 CEST 2011: neostore.propertystore.db.index.keys.mapped_memory=1M
29
+ Sat Sep 10 18:32:01 CEST 2011: neostore.propertystore.db.index.mapped_memory=1M
30
+ Sat Sep 10 18:32:01 CEST 2011: neostore.propertystore.db.mapped_memory=90M
31
+ Sat Sep 10 18:32:01 CEST 2011: neostore.propertystore.db.strings.mapped_memory=130M
32
+ Sat Sep 10 18:32:01 CEST 2011: neostore.relationshipstore.db.mapped_memory=50M
33
+ Sat Sep 10 18:32:01 CEST 2011: node_auto_indexing=false
34
+ Sat Sep 10 18:32:01 CEST 2011: rebuild_idgenerators_fast=true
35
+ Sat Sep 10 18:32:01 CEST 2011: relationship_auto_indexing=false
36
+ Sat Sep 10 18:32:01 CEST 2011: store_dir=/Users/namxam/packages/neo4j-community-1.4.1.test/data/graph.db
37
+ Sat Sep 10 18:32:01 CEST 2011: use_memory_mapped_buffers=true
38
+ Sat Sep 10 18:32:01 CEST 2011: --- CONFIGURATION END ---
39
+ Sat Sep 10 18:32:01 CEST 2011: Extension org.neo4j.kernel.KernelExtension[kernel jmx] loaded ok
40
+ Sat Sep 10 18:32:01 CEST 2011: Extension org.neo4j.kernel.KernelExtension[dummy] loaded ok
41
+ Sat Sep 10 18:32:01 CEST 2011: Extension org.neo4j.kernel.KernelExtension[other dummy] loaded ok
42
+ Sat Sep 10 18:32:02 CEST 2011: Extension org.neo4j.kernel.KernelExtension[shell] loaded ok
43
+ Sat Sep 10 18:32:02 CEST 2011: Extension org.neo4j.kernel.KernelExtension[kernel udc] loaded ok
44
+ Sat Sep 10 18:37:06 CEST 2011: Closed log /Users/namxam/packages/neo4j-community-1.4.1.test/data/graph.db/nioneo_logical.log
45
+ Sat Sep 10 18:37:06 CEST 2011: NeoStore closed
46
+ Sat Sep 10 18:37:06 CEST 2011: Closed log /Users/namxam/packages/neo4j-community-1.4.1.test/data/graph.db/index/lucene.log
47
+ Sat Sep 10 18:37:06 CEST 2011: NeoStore closed
48
+ Sat Sep 10 18:37:06 CEST 2011: TM shutting down
49
+ Thu Oct 20 19:31:26 CEST 2011: Opened [/Users/namxam/src/architect4r/neo4j_server/data/graph.db/nioneo_logical.log.1] clean empty log, version=1
50
+ Thu Oct 20 19:31:26 CEST 2011: Opened [/Users/namxam/src/architect4r/neo4j_server/data/graph.db/index/lucene.log.1] clean empty log, version=1
51
+ Thu Oct 20 19:31:26 CEST 2011: TM opening log: /Users/namxam/src/architect4r/neo4j_server/data/graph.db/tm_tx_log.1
52
+ Thu Oct 20 19:31:27 CEST 2011: --- CONFIGURATION START ---
53
+ Thu Oct 20 19:31:27 CEST 2011: Physical mem: 8192MB, Heap size: 1763MB
54
+ Thu Oct 20 19:31:27 CEST 2011: Kernel version: Neo4j - Graph Database Kernel 1.4.1
55
+ Thu Oct 20 19:31:27 CEST 2011: Neo4j - Graph Database Kernel 1.4.1
56
+ Thu Oct 20 19:31:27 CEST 2011: Operating System: Mac OS X; version: 10.7.2; arch: x86_64; cpus: 2
57
+ Thu Oct 20 19:31:27 CEST 2011: VM Name: Java HotSpot(TM) 64-Bit Server VM
58
+ Thu Oct 20 19:31:27 CEST 2011: VM Vendor: Apple Inc.
59
+ Thu Oct 20 19:31:27 CEST 2011: VM Version: 20.1-b02-383
60
+ Thu Oct 20 19:31:27 CEST 2011: Boot Class Path: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsfd.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/classes.jar:/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework/Resources/Java/JavaRuntimeSupport.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/ui.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/laf.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/sunrsasign.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsse.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/charsets.jar
61
+ Thu Oct 20 19:31:27 CEST 2011: Class Path: /Users/namxam/src/architect4r/neo4j_server/lib/geronimo-jta_1.1_spec-1.1.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/lucene-core-3.1.0.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-community-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-cypher-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-graph-algo-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-graph-matching-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-jmx-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-kernel-1.4.1-tests.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-kernel-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-lucene-index-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-shell-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-udc-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/org.apache.servicemix.bundles.jline-0.9.94_1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/scala-library-2.9.0-1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/server-api-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/antlr-2.7.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-3.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-analysis-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-commons-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-tree-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-util-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/blueprints-core-0.8.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/blueprints-neo4j-graph-0.8.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-beanutils-1.8.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-beanutils-core-1.8.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-collections-3.2.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-configuration-1.6.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-digester-1.8.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-io-1.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-lang-2.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-logging-1.1.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/de.huxhorn.lilith.3rdparty.rrd4j-2.0.5.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/gremlin-1.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/groovy-1.7.8.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jackson-core-asl-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jackson-jaxrs-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jackson-mapper-asl-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jansi-1.5.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jcl-over-slf4j-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-client-1.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-core-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-multipart-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-server-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jettison-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jetty-6.1.25.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jetty-util-6.1.25.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jsr311-api-1.1.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/log4j-over-slf4j-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/mimepull-1.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-cypher-plugin-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-gremlin-plugin-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-server-1.4.1-static-web.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-server-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.apache.felix.fileinstall-3.0.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.apache.felix.framework-3.0.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.apache.felix.main-3.0.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.osgi.compendium-4.1.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.osgi.core-4.1.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/pipes-0.6.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/servlet-api-2.5-20081211.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/slf4j-api-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/slf4j-jdk14-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/stax-api-1.0.1.jar
62
+ Thu Oct 20 19:31:27 CEST 2011: Library Path: /usr/local/mysql/lib::.:/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java
63
+ Thu Oct 20 19:31:27 CEST 2011: Garbage Collector: PS Scavenge: [PS Eden Space, PS Survivor Space]
64
+ Thu Oct 20 19:31:27 CEST 2011: Garbage Collector: PS MarkSweep: [PS Eden Space, PS Survivor Space, PS Old Gen, PS Perm Gen]
65
+ Thu Oct 20 19:31:27 CEST 2011: VM Arguments: [-Xserver, -Dorg.neo4j.server.properties=conf/neo4j-server.properties, -Djava.util.logging.config.file=conf/logging.properties, -Dlog4j.configuration=file:conf/log4j.properties, -Dorg.neo4j.server.properties=/Users/namxam/src/architect4r/neo4j_server/conf/neo4j-server.properties, -Djava.util.logging.config.file=/Users/namxam/src/architect4r/neo4j_server/conf/logging.properties, -Dneo4j.home=/Users/namxam/src/architect4r/neo4j_server, -Dneo4j.instance=/Users/namxam/src/architect4r/neo4j_server]
66
+ Thu Oct 20 19:31:27 CEST 2011:
67
+ Thu Oct 20 19:31:27 CEST 2011: create=true
68
+ Thu Oct 20 19:31:27 CEST 2011: enable_remote_shell=true
69
+ Thu Oct 20 19:31:27 CEST 2011: keep_logical_logs=true
70
+ Thu Oct 20 19:31:27 CEST 2011: logical_log=/Users/namxam/src/architect4r/neo4j_server/data/graph.db/nioneo_logical.log
71
+ Thu Oct 20 19:31:27 CEST 2011: neo4j.ext.udc.source=server
72
+ Thu Oct 20 19:31:27 CEST 2011: neo_store=/Users/namxam/src/architect4r/neo4j_server/data/graph.db/neostore
73
+ Thu Oct 20 19:31:27 CEST 2011: neostore.nodestore.db.mapped_memory=25M
74
+ Thu Oct 20 19:31:27 CEST 2011: neostore.propertystore.db.arrays.mapped_memory=130M
75
+ Thu Oct 20 19:31:27 CEST 2011: neostore.propertystore.db.index.keys.mapped_memory=1M
76
+ Thu Oct 20 19:31:27 CEST 2011: neostore.propertystore.db.index.mapped_memory=1M
77
+ Thu Oct 20 19:31:27 CEST 2011: neostore.propertystore.db.mapped_memory=90M
78
+ Thu Oct 20 19:31:27 CEST 2011: neostore.propertystore.db.strings.mapped_memory=130M
79
+ Thu Oct 20 19:31:27 CEST 2011: neostore.relationshipstore.db.mapped_memory=50M
80
+ Thu Oct 20 19:31:27 CEST 2011: node_auto_indexing=false
81
+ Thu Oct 20 19:31:27 CEST 2011: rebuild_idgenerators_fast=true
82
+ Thu Oct 20 19:31:27 CEST 2011: relationship_auto_indexing=false
83
+ Thu Oct 20 19:31:27 CEST 2011: store_dir=/Users/namxam/src/architect4r/neo4j_server/data/graph.db
84
+ Thu Oct 20 19:31:27 CEST 2011: use_memory_mapped_buffers=true
85
+ Thu Oct 20 19:31:27 CEST 2011: --- CONFIGURATION END ---
86
+ Thu Oct 20 19:31:27 CEST 2011: Extension org.neo4j.kernel.KernelExtension[kernel jmx] loaded ok
87
+ Thu Oct 20 19:31:27 CEST 2011: Extension org.neo4j.kernel.KernelExtension[dummy] loaded ok
88
+ Thu Oct 20 19:31:27 CEST 2011: Extension org.neo4j.kernel.KernelExtension[other dummy] loaded ok
89
+ Thu Oct 20 19:31:27 CEST 2011: Extension org.neo4j.kernel.KernelExtension[shell] loaded ok
90
+ Thu Oct 20 19:31:27 CEST 2011: Extension org.neo4j.kernel.KernelExtension[kernel udc] loaded ok
91
+ Thu Oct 20 19:34:05 CEST 2011: Closed log /Users/namxam/src/architect4r/neo4j_server/data/graph.db/nioneo_logical.log
92
+ Thu Oct 20 19:34:05 CEST 2011: NeoStore closed
93
+ Thu Oct 20 19:34:05 CEST 2011: Closed log /Users/namxam/src/architect4r/neo4j_server/data/graph.db/index/lucene.log
94
+ Thu Oct 20 19:34:05 CEST 2011: NeoStore closed
95
+ Thu Oct 20 19:34:05 CEST 2011: TM shutting down
96
+ Thu Oct 20 19:34:56 CEST 2011: Opened [/Users/namxam/src/architect4r/neo4j_server/data/graph.db/nioneo_logical.log.1] clean empty log, version=2
97
+ Thu Oct 20 19:34:56 CEST 2011: Opened [/Users/namxam/src/architect4r/neo4j_server/data/graph.db/index/lucene.log.1] clean empty log, version=2
98
+ Thu Oct 20 19:34:56 CEST 2011: TM opening log: /Users/namxam/src/architect4r/neo4j_server/data/graph.db/tm_tx_log.1
99
+ Thu Oct 20 19:34:56 CEST 2011: --- CONFIGURATION START ---
100
+ Thu Oct 20 19:34:56 CEST 2011: Physical mem: 8192MB, Heap size: 1763MB
101
+ Thu Oct 20 19:34:56 CEST 2011: Kernel version: Neo4j - Graph Database Kernel 1.4.1
102
+ Thu Oct 20 19:34:56 CEST 2011: Neo4j - Graph Database Kernel 1.4.1
103
+ Thu Oct 20 19:34:56 CEST 2011: Operating System: Mac OS X; version: 10.7.2; arch: x86_64; cpus: 2
104
+ Thu Oct 20 19:34:56 CEST 2011: VM Name: Java HotSpot(TM) 64-Bit Server VM
105
+ Thu Oct 20 19:34:56 CEST 2011: VM Vendor: Apple Inc.
106
+ Thu Oct 20 19:34:56 CEST 2011: VM Version: 20.1-b02-383
107
+ Thu Oct 20 19:34:56 CEST 2011: Boot Class Path: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsfd.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/classes.jar:/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework/Resources/Java/JavaRuntimeSupport.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/ui.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/laf.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/sunrsasign.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsse.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/charsets.jar
108
+ Thu Oct 20 19:34:56 CEST 2011: Class Path: /Users/namxam/src/architect4r/neo4j_server/lib/geronimo-jta_1.1_spec-1.1.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/lucene-core-3.1.0.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-community-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-cypher-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-graph-algo-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-graph-matching-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-jmx-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-kernel-1.4.1-tests.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-kernel-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-lucene-index-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-shell-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/neo4j-udc-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/org.apache.servicemix.bundles.jline-0.9.94_1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/scala-library-2.9.0-1.jar:/Users/namxam/src/architect4r/neo4j_server/lib/server-api-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/antlr-2.7.7.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-3.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-analysis-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-commons-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-tree-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/asm-util-3.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/blueprints-core-0.8.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/blueprints-neo4j-graph-0.8.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-beanutils-1.8.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-beanutils-core-1.8.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-collections-3.2.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-configuration-1.6.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-digester-1.8.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-io-1.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-lang-2.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/commons-logging-1.1.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/de.huxhorn.lilith.3rdparty.rrd4j-2.0.5.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/gremlin-1.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/groovy-1.7.8.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jackson-core-asl-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jackson-jaxrs-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jackson-mapper-asl-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jansi-1.5.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jcl-over-slf4j-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-client-1.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-core-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-multipart-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jersey-server-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jettison-1.3.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jetty-6.1.25.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jetty-util-6.1.25.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/jsr311-api-1.1.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/log4j-over-slf4j-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/mimepull-1.4.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-cypher-plugin-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-gremlin-plugin-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-server-1.4.1-static-web.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/neo4j-server-1.4.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.apache.felix.fileinstall-3.0.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.apache.felix.framework-3.0.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.apache.felix.main-3.0.2.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.osgi.compendium-4.1.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/org.osgi.core-4.1.0.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/pipes-0.6.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/servlet-api-2.5-20081211.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/slf4j-api-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/slf4j-jdk14-1.6.1.jar:/Users/namxam/src/architect4r/neo4j_server/system/lib/stax-api-1.0.1.jar
109
+ Thu Oct 20 19:34:56 CEST 2011: Library Path: /usr/local/mysql/lib::.:/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java
110
+ Thu Oct 20 19:34:56 CEST 2011: Garbage Collector: PS Scavenge: [PS Eden Space, PS Survivor Space]
111
+ Thu Oct 20 19:34:56 CEST 2011: Garbage Collector: PS MarkSweep: [PS Eden Space, PS Survivor Space, PS Old Gen, PS Perm Gen]
112
+ Thu Oct 20 19:34:56 CEST 2011: VM Arguments: [-Xserver, -Dorg.neo4j.server.properties=conf/neo4j-server.properties, -Djava.util.logging.config.file=conf/logging.properties, -Dlog4j.configuration=file:conf/log4j.properties, -Dorg.neo4j.server.properties=/Users/namxam/src/architect4r/neo4j_server/conf/neo4j-server.properties, -Djava.util.logging.config.file=/Users/namxam/src/architect4r/neo4j_server/conf/logging.properties, -Dneo4j.home=/Users/namxam/src/architect4r/neo4j_server, -Dneo4j.instance=/Users/namxam/src/architect4r/neo4j_server]
113
+ Thu Oct 20 19:34:56 CEST 2011:
114
+ Thu Oct 20 19:34:56 CEST 2011: create=true
115
+ Thu Oct 20 19:34:56 CEST 2011: enable_remote_shell=true
116
+ Thu Oct 20 19:34:56 CEST 2011: keep_logical_logs=true
117
+ Thu Oct 20 19:34:56 CEST 2011: logical_log=/Users/namxam/src/architect4r/neo4j_server/data/graph.db/nioneo_logical.log
118
+ Thu Oct 20 19:34:56 CEST 2011: neo4j.ext.udc.source=server
119
+ Thu Oct 20 19:34:56 CEST 2011: neo_store=/Users/namxam/src/architect4r/neo4j_server/data/graph.db/neostore
120
+ Thu Oct 20 19:34:56 CEST 2011: neostore.nodestore.db.mapped_memory=25M
121
+ Thu Oct 20 19:34:56 CEST 2011: neostore.propertystore.db.arrays.mapped_memory=130M
122
+ Thu Oct 20 19:34:56 CEST 2011: neostore.propertystore.db.index.keys.mapped_memory=1M
123
+ Thu Oct 20 19:34:56 CEST 2011: neostore.propertystore.db.index.mapped_memory=1M
124
+ Thu Oct 20 19:34:56 CEST 2011: neostore.propertystore.db.mapped_memory=90M
125
+ Thu Oct 20 19:34:56 CEST 2011: neostore.propertystore.db.strings.mapped_memory=130M
126
+ Thu Oct 20 19:34:56 CEST 2011: neostore.relationshipstore.db.mapped_memory=50M
127
+ Thu Oct 20 19:34:56 CEST 2011: node_auto_indexing=false
128
+ Thu Oct 20 19:34:56 CEST 2011: rebuild_idgenerators_fast=true
129
+ Thu Oct 20 19:34:56 CEST 2011: relationship_auto_indexing=false
130
+ Thu Oct 20 19:34:56 CEST 2011: store_dir=/Users/namxam/src/architect4r/neo4j_server/data/graph.db
131
+ Thu Oct 20 19:34:56 CEST 2011: use_memory_mapped_buffers=true
132
+ Thu Oct 20 19:34:56 CEST 2011: --- CONFIGURATION END ---
133
+ Thu Oct 20 19:34:57 CEST 2011: Extension org.neo4j.kernel.KernelExtension[kernel jmx] loaded ok
134
+ Thu Oct 20 19:34:57 CEST 2011: Extension org.neo4j.kernel.KernelExtension[dummy] loaded ok
135
+ Thu Oct 20 19:34:57 CEST 2011: Extension org.neo4j.kernel.KernelExtension[other dummy] loaded ok
136
+ Thu Oct 20 19:34:57 CEST 2011: Extension org.neo4j.kernel.KernelExtension[shell] loaded ok
137
+ Thu Oct 20 19:34:57 CEST 2011: Extension org.neo4j.kernel.KernelExtension[kernel udc] loaded ok
138
+ Thu Oct 20 19:35:46 CEST 2011: Closed log /Users/namxam/src/architect4r/neo4j_server/data/graph.db/nioneo_logical.log
139
+ Thu Oct 20 19:35:46 CEST 2011: NeoStore closed
140
+ Thu Oct 20 19:35:46 CEST 2011: Closed log /Users/namxam/src/architect4r/neo4j_server/data/graph.db/index/lucene.log
141
+ Thu Oct 20 19:35:46 CEST 2011: NeoStore closed
142
+ Thu Oct 20 19:35:46 CEST 2011: TM shutting down