neo4j-wrapper 2.2.3-java → 2.2.4-java
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/Gemfile +1 -1
- data/lib/neo4j-wrapper/class_methods.rb +1 -1
- data/lib/neo4j-wrapper/has_n/decl_rel.rb +5 -2
- data/lib/neo4j-wrapper/relationship_mixin/delegates.rb +3 -2
- data/lib/neo4j-wrapper/version.rb +1 -1
- data/neo4j-wrapper.gemspec +1 -1
- metadata +7 -57
- data/lib/db/active_tx_log +0 -1
- data/lib/db/index.db +0 -0
- data/lib/db/index/lucene-store.db +0 -0
- data/lib/db/index/lucene.log.active +0 -0
- data/lib/db/index/lucene.log.v0 +0 -0
- data/lib/db/index/lucene/node/Person_exact/_0.fdt +0 -0
- data/lib/db/index/lucene/node/Person_exact/_0.fdx +0 -0
- data/lib/db/index/lucene/node/Person_exact/_0.fnm +0 -1
- data/lib/db/index/lucene/node/Person_exact/_0.frq +0 -1
- data/lib/db/index/lucene/node/Person_exact/_0.nrm +0 -1
- data/lib/db/index/lucene/node/Person_exact/_0.prx +0 -0
- data/lib/db/index/lucene/node/Person_exact/_0.tii +0 -0
- data/lib/db/index/lucene/node/Person_exact/_0.tis +0 -0
- data/lib/db/index/lucene/node/Person_exact/segments.gen +0 -0
- data/lib/db/index/lucene/node/Person_exact/segments_1 +0 -0
- data/lib/db/index/lucene/node/Person_fulltext/_0.fdt +0 -0
- data/lib/db/index/lucene/node/Person_fulltext/_0.fdx +0 -0
- data/lib/db/index/lucene/node/Person_fulltext/_0.fnm +0 -1
- data/lib/db/index/lucene/node/Person_fulltext/_0.frq +0 -1
- data/lib/db/index/lucene/node/Person_fulltext/_0.nrm +0 -1
- data/lib/db/index/lucene/node/Person_fulltext/_0.prx +0 -0
- data/lib/db/index/lucene/node/Person_fulltext/_0.tii +0 -0
- data/lib/db/index/lucene/node/Person_fulltext/_0.tis +0 -0
- data/lib/db/index/lucene/node/Person_fulltext/segments.gen +0 -0
- data/lib/db/index/lucene/node/Person_fulltext/segments_1 +0 -0
- data/lib/db/messages.log +0 -343
- data/lib/db/neostore +0 -0
- data/lib/db/neostore.id +0 -0
- data/lib/db/neostore.nodestore.db +0 -0
- data/lib/db/neostore.nodestore.db.id +0 -0
- data/lib/db/neostore.propertystore.db +0 -0
- data/lib/db/neostore.propertystore.db.arrays +0 -0
- data/lib/db/neostore.propertystore.db.arrays.id +0 -0
- data/lib/db/neostore.propertystore.db.id +0 -0
- data/lib/db/neostore.propertystore.db.index +0 -0
- data/lib/db/neostore.propertystore.db.index.id +0 -0
- data/lib/db/neostore.propertystore.db.index.keys +0 -0
- data/lib/db/neostore.propertystore.db.index.keys.id +0 -0
- data/lib/db/neostore.propertystore.db.strings +0 -0
- data/lib/db/neostore.propertystore.db.strings.id +0 -0
- data/lib/db/neostore.relationshipstore.db +0 -1
- data/lib/db/neostore.relationshipstore.db.id +0 -0
- data/lib/db/neostore.relationshiptypestore.db +0 -1
- data/lib/db/neostore.relationshiptypestore.db.id +0 -0
- data/lib/db/neostore.relationshiptypestore.db.names +0 -0
- data/lib/db/neostore.relationshiptypestore.db.names.id +0 -0
- data/lib/db/nioneo_logical.log.active +0 -0
- data/lib/db/nioneo_logical.log.v0 +0 -0
- data/lib/db/tm_tx_log.1 +0 -0
    
        data/Gemfile
    CHANGED
    
    
| @@ -40,7 +40,7 @@ module Neo4j | |
| 40 40 | 
             
                    base_class = self
         | 
| 41 41 | 
             
                    sub_klass.rel_indexer do
         | 
| 42 42 | 
             
                      inherit_from base_class unless base_class == sub_klass
         | 
| 43 | 
            -
                      index_names :exact => "#{sub_klass}_exact", :fulltext => "#{sub_klass}_fulltext"
         | 
| 43 | 
            +
                      index_names :exact => "#{sub_klass._index_name}_exact", :fulltext => "#{sub_klass._index_name}_fulltext"
         | 
| 44 44 | 
             
                      trigger_on :_classname => sub_klass.to_s
         | 
| 45 45 | 
             
                      prefix_index_name &sub_klass.method(:index_prefix)
         | 
| 46 46 | 
             
                    end
         | 
| @@ -192,7 +192,9 @@ module Neo4j | |
| 192 192 | 
             
                    #   class Order
         | 
| 193 193 | 
             
                    #     property :total_cost
         | 
| 194 194 | 
             
                    #     property :dispatched
         | 
| 195 | 
            -
                    #     has_n(:products).to(Product).relationship(OrderLine)
         | 
| 195 | 
            +
                    #     has_n(:products).to(Product).relationship(OrderLine)                
         | 
| 196 | 
            +
                    #     # strings can also be passed in, for cases where the class may not be initialized yet:
         | 
| 197 | 
            +
                    #     # has_n(:products).to(Product).relationship('Order::Line')
         | 
| 196 198 | 
             
                    #   end
         | 
| 197 199 | 
             
                    #
         | 
| 198 200 | 
             
                    #  order = Order.new
         | 
| @@ -214,7 +216,8 @@ module Neo4j | |
| 214 216 | 
             
                      if @dir == :incoming
         | 
| 215 217 | 
             
                        other_class_dsl = target_class && target_class._decl_rels[@relationship_name]
         | 
| 216 218 | 
             
                        @relationship = other_class_dsl.relationship_class if other_class_dsl
         | 
| 217 | 
            -
             | 
| 219 | 
            +
                      end
         | 
| 220 | 
            +
                      @relationship = Neo4j::Wrapper.method(:to_class).call(@relationship) if @relationship.is_a? String
         | 
| 218 221 | 
             
                      @relationship
         | 
| 219 222 | 
             
                    end
         | 
| 220 223 |  | 
| @@ -57,8 +57,9 @@ module Neo4j | |
| 57 57 | 
             
                    # @macro  node.delegate
         | 
| 58 58 | 
             
                    delegate :start_node, 'Relationship'
         | 
| 59 59 |  | 
| 60 | 
            -
                     | 
| 61 | 
            -
             | 
| 60 | 
            +
                    def nodes
         | 
| 61 | 
            +
                      [start_node, end_node]
         | 
| 62 | 
            +
                    end
         | 
| 62 63 |  | 
| 63 64 | 
             
                    # @macro  node.delegate
         | 
| 64 65 | 
             
                    delegate :other_node, 'Relationship'
         | 
    
        data/neo4j-wrapper.gemspec
    CHANGED
    
    | @@ -27,5 +27,5 @@ It comes included with the Apache Lucene document database. | |
| 27 27 | 
             
              s.extra_rdoc_files = %w( README.rdoc )
         | 
| 28 28 | 
             
              s.rdoc_options = ["--quiet", "--title", "Neo4j.rb", "--line-numbers", "--main", "README.rdoc", "--inline-source"]
         | 
| 29 29 |  | 
| 30 | 
            -
              s.add_dependency("neo4j-core", "2.2. | 
| 30 | 
            +
              s.add_dependency("neo4j-core", "2.2.4")
         | 
| 31 31 | 
             
            end
         | 
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: neo4j-wrapper
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 2.2. | 
| 4 | 
            +
              version: 2.2.4
         | 
| 5 5 | 
             
              prerelease:
         | 
| 6 6 | 
             
            platform: java
         | 
| 7 7 | 
             
            authors:
         | 
| @@ -9,7 +9,7 @@ authors: | |
| 9 9 | 
             
            autorequire:
         | 
| 10 10 | 
             
            bindir: bin
         | 
| 11 11 | 
             
            cert_chain: []
         | 
| 12 | 
            -
            date:  | 
| 12 | 
            +
            date: 2013-05-19 00:00:00.000000000 Z
         | 
| 13 13 | 
             
            dependencies:
         | 
| 14 14 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 15 15 | 
             
              name: neo4j-core
         | 
| @@ -17,13 +17,13 @@ dependencies: | |
| 17 17 | 
             
                requirements:
         | 
| 18 18 | 
             
                - - '='
         | 
| 19 19 | 
             
                  - !ruby/object:Gem::Version
         | 
| 20 | 
            -
                    version: 2.2. | 
| 20 | 
            +
                    version: 2.2.4
         | 
| 21 21 | 
             
                none: false
         | 
| 22 22 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 23 23 | 
             
                requirements:
         | 
| 24 24 | 
             
                - - '='
         | 
| 25 25 | 
             
                  - !ruby/object:Gem::Version
         | 
| 26 | 
            -
                    version: 2.2. | 
| 26 | 
            +
                    version: 2.2.4
         | 
| 27 27 | 
             
                none: false
         | 
| 28 28 | 
             
              prerelease: false
         | 
| 29 29 | 
             
              type: :runtime
         | 
| @@ -39,55 +39,6 @@ extra_rdoc_files: | |
| 39 39 | 
             
            - README.rdoc
         | 
| 40 40 | 
             
            files:
         | 
| 41 41 | 
             
            - lib/neo4j-wrapper.rb
         | 
| 42 | 
            -
            - lib/db/active_tx_log
         | 
| 43 | 
            -
            - lib/db/index.db
         | 
| 44 | 
            -
            - lib/db/messages.log
         | 
| 45 | 
            -
            - lib/db/neostore
         | 
| 46 | 
            -
            - lib/db/neostore.id
         | 
| 47 | 
            -
            - lib/db/neostore.nodestore.db
         | 
| 48 | 
            -
            - lib/db/neostore.nodestore.db.id
         | 
| 49 | 
            -
            - lib/db/neostore.propertystore.db
         | 
| 50 | 
            -
            - lib/db/neostore.propertystore.db.arrays
         | 
| 51 | 
            -
            - lib/db/neostore.propertystore.db.arrays.id
         | 
| 52 | 
            -
            - lib/db/neostore.propertystore.db.id
         | 
| 53 | 
            -
            - lib/db/neostore.propertystore.db.index
         | 
| 54 | 
            -
            - lib/db/neostore.propertystore.db.index.id
         | 
| 55 | 
            -
            - lib/db/neostore.propertystore.db.index.keys
         | 
| 56 | 
            -
            - lib/db/neostore.propertystore.db.index.keys.id
         | 
| 57 | 
            -
            - lib/db/neostore.propertystore.db.strings
         | 
| 58 | 
            -
            - lib/db/neostore.propertystore.db.strings.id
         | 
| 59 | 
            -
            - lib/db/neostore.relationshipstore.db
         | 
| 60 | 
            -
            - lib/db/neostore.relationshipstore.db.id
         | 
| 61 | 
            -
            - lib/db/neostore.relationshiptypestore.db
         | 
| 62 | 
            -
            - lib/db/neostore.relationshiptypestore.db.id
         | 
| 63 | 
            -
            - lib/db/neostore.relationshiptypestore.db.names
         | 
| 64 | 
            -
            - lib/db/neostore.relationshiptypestore.db.names.id
         | 
| 65 | 
            -
            - lib/db/nioneo_logical.log.active
         | 
| 66 | 
            -
            - lib/db/nioneo_logical.log.v0
         | 
| 67 | 
            -
            - lib/db/tm_tx_log.1
         | 
| 68 | 
            -
            - lib/db/index/lucene-store.db
         | 
| 69 | 
            -
            - lib/db/index/lucene.log.active
         | 
| 70 | 
            -
            - lib/db/index/lucene.log.v0
         | 
| 71 | 
            -
            - lib/db/index/lucene/node/Person_exact/_0.fdt
         | 
| 72 | 
            -
            - lib/db/index/lucene/node/Person_exact/_0.fdx
         | 
| 73 | 
            -
            - lib/db/index/lucene/node/Person_exact/_0.fnm
         | 
| 74 | 
            -
            - lib/db/index/lucene/node/Person_exact/_0.frq
         | 
| 75 | 
            -
            - lib/db/index/lucene/node/Person_exact/_0.nrm
         | 
| 76 | 
            -
            - lib/db/index/lucene/node/Person_exact/_0.prx
         | 
| 77 | 
            -
            - lib/db/index/lucene/node/Person_exact/_0.tii
         | 
| 78 | 
            -
            - lib/db/index/lucene/node/Person_exact/_0.tis
         | 
| 79 | 
            -
            - lib/db/index/lucene/node/Person_exact/segments.gen
         | 
| 80 | 
            -
            - lib/db/index/lucene/node/Person_exact/segments_1
         | 
| 81 | 
            -
            - lib/db/index/lucene/node/Person_fulltext/_0.fdt
         | 
| 82 | 
            -
            - lib/db/index/lucene/node/Person_fulltext/_0.fdx
         | 
| 83 | 
            -
            - lib/db/index/lucene/node/Person_fulltext/_0.fnm
         | 
| 84 | 
            -
            - lib/db/index/lucene/node/Person_fulltext/_0.frq
         | 
| 85 | 
            -
            - lib/db/index/lucene/node/Person_fulltext/_0.nrm
         | 
| 86 | 
            -
            - lib/db/index/lucene/node/Person_fulltext/_0.prx
         | 
| 87 | 
            -
            - lib/db/index/lucene/node/Person_fulltext/_0.tii
         | 
| 88 | 
            -
            - lib/db/index/lucene/node/Person_fulltext/_0.tis
         | 
| 89 | 
            -
            - lib/db/index/lucene/node/Person_fulltext/segments.gen
         | 
| 90 | 
            -
            - lib/db/index/lucene/node/Person_fulltext/segments_1
         | 
| 91 42 | 
             
            - lib/neo4j/identity_map.rb
         | 
| 92 43 | 
             
            - lib/neo4j/node_mixin.rb
         | 
| 93 44 | 
             
            - lib/neo4j/relationship_mixin.rb
         | 
| @@ -137,18 +88,17 @@ require_paths: | |
| 137 88 | 
             
            - lib
         | 
| 138 89 | 
             
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 139 90 | 
             
              requirements:
         | 
| 140 | 
            -
              - -  | 
| 91 | 
            +
              - - '>='
         | 
| 141 92 | 
             
                - !ruby/object:Gem::Version
         | 
| 142 93 | 
             
                  version: 1.8.7
         | 
| 143 94 | 
             
              none: false
         | 
| 144 95 | 
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 145 96 | 
             
              requirements:
         | 
| 146 | 
            -
              - -  | 
| 97 | 
            +
              - - '>='
         | 
| 147 98 | 
             
                - !ruby/object:Gem::Version
         | 
| 148 99 | 
             
                  segments:
         | 
| 149 100 | 
             
                  - 0
         | 
| 150 | 
            -
                  version:  | 
| 151 | 
            -
                    MA==
         | 
| 101 | 
            +
                  version: '0'
         | 
| 152 102 | 
             
                  hash: 2
         | 
| 153 103 | 
             
              none: false
         | 
| 154 104 | 
             
            requirements: []
         | 
    
        data/lib/db/active_tx_log
    DELETED
    
    | @@ -1 +0,0 @@ | |
| 1 | 
            -
            tm_tx_log.1
         | 
    
        data/lib/db/index.db
    DELETED
    
    | Binary file | 
| Binary file | 
| Binary file | 
    
        data/lib/db/index/lucene.log.v0
    DELETED
    
    | Binary file | 
| Binary file | 
| Binary file | 
| @@ -1 +0,0 @@ | |
| 1 | 
            -
            ����_id_name
         | 
| @@ -1 +0,0 @@ | |
| 1 | 
            -
            
         | 
| @@ -1 +0,0 @@ | |
| 1 | 
            -
            NRM�||||
         | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| @@ -1 +0,0 @@ | |
| 1 | 
            -
            ����_id_adress_eadresscity_ecity
         | 
| @@ -1 +0,0 @@ | |
| 1 | 
            -
            
         | 
| @@ -1 +0,0 @@ | |
| 1 | 
            -
            NRM�|||||
         | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
    
        data/lib/db/messages.log
    DELETED
    
    | @@ -1,343 +0,0 @@ | |
| 1 | 
            -
            2012-09-24 08:23:24.159+0000: WARNING! Deprecated configuration options used. See manual for details
         | 
| 2 | 
            -
            2012-09-24 08:23:24.161+0000: enable_online_backup has been replaced with online_backup_enabled and online_backup_port
         | 
| 3 | 
            -
            2012-09-24 08:23:24.161+0000: neo4j.ext.udc.disable has been replaced with neo4j.ext.udc.enabled
         | 
| 4 | 
            -
            2012-09-24 08:23:24.161+0000: cannot configure writers and searchers individually since they go together
         | 
| 5 | 
            -
            2012-09-24 08:23:24.215+0000: Creating new db @ /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore
         | 
| 6 | 
            -
            2012-09-24 08:23:24.241+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.nodestore.db] brickCount=0 brickSize=262143b mappedMem=26214400b (storeSize=0b)
         | 
| 7 | 
            -
            2012-09-24 08:23:24.244+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.nodestore.db hit=1 miss=0 switches=0 ooe=0
         | 
| 8 | 
            -
            2012-09-24 08:23:24.253+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.relationshiptypestore.db.names] brickCount=0 brickSize=0b mappedMem=0b (storeSize=38b)
         | 
| 9 | 
            -
            2012-09-24 08:23:24.256+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.relationshiptypestore.db] brickCount=0 brickSize=0b mappedMem=0b (storeSize=0b)
         | 
| 10 | 
            -
            2012-09-24 08:23:24.256+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.relationshiptypestore.db.names hit=0 miss=0 switches=0 ooe=0
         | 
| 11 | 
            -
            2012-09-24 08:23:24.257+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.relationshiptypestore.db hit=0 miss=0 switches=0 ooe=0
         | 
| 12 | 
            -
            2012-09-24 08:23:24.258+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.relationshiptypestore.db.names] brickCount=0 brickSize=0b mappedMem=0b (storeSize=38b)
         | 
| 13 | 
            -
            2012-09-24 08:23:24.258+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.relationshiptypestore.db] brickCount=0 brickSize=0b mappedMem=0b (storeSize=0b)
         | 
| 14 | 
            -
            2012-09-24 08:23:24.258+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db.strings] brickCount=0 brickSize=136192b mappedMem=136314880b (storeSize=128b)
         | 
| 15 | 
            -
            2012-09-24 08:23:24.259+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db.index.keys] brickCount=0 brickSize=1026b mappedMem=1048576b (storeSize=38b)
         | 
| 16 | 
            -
            2012-09-24 08:23:24.260+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db.index] brickCount=0 brickSize=10485b mappedMem=1048576b (storeSize=0b)
         | 
| 17 | 
            -
            2012-09-24 08:23:24.261+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db.arrays] brickCount=0 brickSize=136192b mappedMem=136314880b (storeSize=128b)
         | 
| 18 | 
            -
            2012-09-24 08:23:24.264+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db] brickCount=0 brickSize=943697b mappedMem=94371840b (storeSize=0b)
         | 
| 19 | 
            -
            2012-09-24 08:23:24.266+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.relationshipstore.db] brickCount=0 brickSize=524271b mappedMem=52428800b (storeSize=0b)
         | 
| 20 | 
            -
            2012-09-24 08:23:24.266+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.nodestore.db] brickCount=0 brickSize=26208b mappedMem=26214400b (storeSize=9b)
         | 
| 21 | 
            -
            2012-09-24 08:23:24.267+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore] brickCount=0 brickSize=0b mappedMem=0b (storeSize=0b)
         | 
| 22 | 
            -
            2012-09-24 08:23:24.273+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.relationshiptypestore.db.names hit=0 miss=0 switches=0 ooe=0
         | 
| 23 | 
            -
            2012-09-24 08:23:24.274+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.relationshiptypestore.db hit=0 miss=0 switches=0 ooe=0
         | 
| 24 | 
            -
            2012-09-24 08:23:24.274+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db.strings hit=0 miss=0 switches=0 ooe=0
         | 
| 25 | 
            -
            2012-09-24 08:23:24.275+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db.index.keys hit=0 miss=0 switches=0 ooe=0
         | 
| 26 | 
            -
            2012-09-24 08:23:24.275+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db.index hit=0 miss=0 switches=0 ooe=0
         | 
| 27 | 
            -
            2012-09-24 08:23:24.276+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db.arrays hit=0 miss=0 switches=0 ooe=0
         | 
| 28 | 
            -
            2012-09-24 08:23:24.277+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db hit=0 miss=0 switches=0 ooe=0
         | 
| 29 | 
            -
            2012-09-24 08:23:24.278+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.relationshipstore.db hit=0 miss=0 switches=0 ooe=0
         | 
| 30 | 
            -
            2012-09-24 08:23:24.278+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.nodestore.db hit=0 miss=0 switches=0 ooe=0
         | 
| 31 | 
            -
            2012-09-24 08:23:24.279+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore hit=0 miss=8 switches=0 ooe=0
         | 
| 32 | 
            -
            2012-09-24 08:23:24.283+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.relationshiptypestore.db.names] brickCount=0 brickSize=0b mappedMem=0b (storeSize=38b)
         | 
| 33 | 
            -
            2012-09-24 08:23:24.283+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.relationshiptypestore.db] brickCount=0 brickSize=0b mappedMem=0b (storeSize=0b)
         | 
| 34 | 
            -
            2012-09-24 08:23:24.284+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db.strings] brickCount=0 brickSize=136192b mappedMem=136314880b (storeSize=128b)
         | 
| 35 | 
            -
            2012-09-24 08:23:24.284+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db.index.keys] brickCount=0 brickSize=1026b mappedMem=1048576b (storeSize=38b)
         | 
| 36 | 
            -
            2012-09-24 08:23:24.285+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db.index] brickCount=0 brickSize=10485b mappedMem=1048576b (storeSize=0b)
         | 
| 37 | 
            -
            2012-09-24 08:23:24.285+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db.arrays] brickCount=0 brickSize=136192b mappedMem=136314880b (storeSize=128b)
         | 
| 38 | 
            -
            2012-09-24 08:23:24.286+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db] brickCount=0 brickSize=943697b mappedMem=94371840b (storeSize=0b)
         | 
| 39 | 
            -
            2012-09-24 08:23:24.286+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.relationshipstore.db] brickCount=0 brickSize=524271b mappedMem=52428800b (storeSize=0b)
         | 
| 40 | 
            -
            2012-09-24 08:23:24.286+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.nodestore.db] brickCount=0 brickSize=26208b mappedMem=26214400b (storeSize=9b)
         | 
| 41 | 
            -
            2012-09-24 08:23:24.287+0000: [/Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore] brickCount=0 brickSize=0b mappedMem=0b (storeSize=54b)
         | 
| 42 | 
            -
            2012-09-24 08:23:24.307+0000: Opened logical log [/Users/andreasronge/projects/neo4j-wrapper/lib/db/nioneo_logical.log.1] version=0, lastTxId=1 (clean)
         | 
| 43 | 
            -
            2012-09-24 08:23:24.313+0000: TM new log: tm_tx_log.1
         | 
| 44 | 
            -
            2012-09-24 08:23:24.334+0000: Opened logical log [/Users/andreasronge/projects/neo4j-wrapper/lib/db/index/lucene.log.1] version=0, lastTxId=1 (clean)
         | 
| 45 | 
            -
            2012-09-24 08:23:24.337+0000: --- STARTUP diagnostics START ---
         | 
| 46 | 
            -
            2012-09-24 08:23:24.339+0000: Neo4j Kernel properties:
         | 
| 47 | 
            -
                read_only=false
         | 
| 48 | 
            -
                forced_kernel_id=
         | 
| 49 | 
            -
                neo4j.ext.udc.host=udc.neo4j.org
         | 
| 50 | 
            -
                logical_log=nioneo_logical.log
         | 
| 51 | 
            -
                min_node_cache_size=0
         | 
| 52 | 
            -
                intercept_committing_transactions=false
         | 
| 53 | 
            -
                node_auto_indexing=false
         | 
| 54 | 
            -
                remote_shell_name=shell
         | 
| 55 | 
            -
                cache_type=soft
         | 
| 56 | 
            -
                intercept_deserialized_transactions=false
         | 
| 57 | 
            -
                ha.db=NO
         | 
| 58 | 
            -
                use_adaptive_cache=YES
         | 
| 59 | 
            -
                lucene_searcher_cache_size=2147483647
         | 
| 60 | 
            -
                neo4j.ext.udc.interval=86400000
         | 
| 61 | 
            -
                use_memory_mapped_buffers=true
         | 
| 62 | 
            -
                timestamps=YES
         | 
| 63 | 
            -
                ha.coordinators=localhost:2181,localhost:2182,localhost:2183
         | 
| 64 | 
            -
                rebuild_idgenerators_fast=true
         | 
| 65 | 
            -
                neostore.propertystore.db.index.keys.mapped_memory=1M
         | 
| 66 | 
            -
                max_node_cache_size=1500
         | 
| 67 | 
            -
                neostore.propertystore.db.arrays.mapped_memory=130M
         | 
| 68 | 
            -
                neostore.propertystore.db.strings.mapped_memory=130M
         | 
| 69 | 
            -
                gcr_cache_min_log_interval=60s
         | 
| 70 | 
            -
                relationship_grab_size=100
         | 
| 71 | 
            -
                relationship_auto_indexing=false
         | 
| 72 | 
            -
                remote_shell_read_only=false
         | 
| 73 | 
            -
                storage_path=db
         | 
| 74 | 
            -
                node_cache_array_fraction=1.0
         | 
| 75 | 
            -
                allow_store_upgrade=false
         | 
| 76 | 
            -
                execution_guard_enabled=false
         | 
| 77 | 
            -
                relationship_cache_array_fraction=1.0
         | 
| 78 | 
            -
                migration_thread=NO
         | 
| 79 | 
            -
                remote_logging_host=127.0.0.1
         | 
| 80 | 
            -
                store_dir=/Users/andreasronge/projects/neo4j-wrapper/lib/db
         | 
| 81 | 
            -
                online_backup_enabled=false
         | 
| 82 | 
            -
                remote_logging_port=4560
         | 
| 83 | 
            -
                enable_rules=YES
         | 
| 84 | 
            -
                gc_monitor_threshold=200ms
         | 
| 85 | 
            -
                load_kernel_extensions=true
         | 
| 86 | 
            -
                array_block_size=120
         | 
| 87 | 
            -
                neostore.relationshipstore.db.mapped_memory=50M
         | 
| 88 | 
            -
                keep_logical_logs=true
         | 
| 89 | 
            -
                dump_configuration=false
         | 
| 90 | 
            -
                gc_monitor_wait_time=100ms
         | 
| 91 | 
            -
                neostore.nodestore.db.mapped_memory=25M
         | 
| 92 | 
            -
                neo4j.ext.udc.first_delay=600000
         | 
| 93 | 
            -
                remote_shell_enabled=true
         | 
| 94 | 
            -
                min_relationship_cache_size=0
         | 
| 95 | 
            -
                max_relationship_cache_size=3500
         | 
| 96 | 
            -
                neo4j.ext.udc.reg=unreg
         | 
| 97 | 
            -
                remote_shell_port=9332
         | 
| 98 | 
            -
                adaptive_cache_heap_ratio=0.77
         | 
| 99 | 
            -
                identity_map=YES
         | 
| 100 | 
            -
                adaptive_cache_manager_decrease_ratio=1.15
         | 
| 101 | 
            -
                ha.server_id=2
         | 
| 102 | 
            -
                adaptive_cache_worker_sleep_time=3000
         | 
| 103 | 
            -
                neo_store=neostore
         | 
| 104 | 
            -
                logging.threshold_for_rotation=104857600
         | 
| 105 | 
            -
                neostore.propertystore.db.index.mapped_memory=1M
         | 
| 106 | 
            -
                adaptive_cache_manager_increase_ratio=1.1
         | 
| 107 | 
            -
                backup_slave=false
         | 
| 108 | 
            -
                neostore.propertystore.db.mapped_memory=90M
         | 
| 109 | 
            -
                string_block_size=120
         | 
| 110 | 
            -
                grab_file_lock=true
         | 
| 111 | 
            -
                remote_logging_enabled=false
         | 
| 112 | 
            -
                ha.server=localhost:6002
         | 
| 113 | 
            -
                neo4j.ext.udc.enabled=true
         | 
| 114 | 
            -
                online_backup_port=6362
         | 
| 115 | 
            -
            2012-09-24 08:23:24.344+0000: Diagnostics providers:
         | 
| 116 | 
            -
                org.neo4j.kernel.configuration.Config
         | 
| 117 | 
            -
                org.neo4j.kernel.info.DiagnosticsManager
         | 
| 118 | 
            -
                SYSTEM_MEMORY
         | 
| 119 | 
            -
                JAVA_MEMORY
         | 
| 120 | 
            -
                OPERATING_SYSTEM
         | 
| 121 | 
            -
                JAVA_VIRTUAL_MACHINE
         | 
| 122 | 
            -
                CLASSPATH
         | 
| 123 | 
            -
                LIBRARY_PATH
         | 
| 124 | 
            -
                SYSTEM_PROPERTIES
         | 
| 125 | 
            -
                NETWORK
         | 
| 126 | 
            -
            2012-09-24 08:23:24.344+0000: System memory information:
         | 
| 127 | 
            -
                Total Physical memory: 6.00 GB
         | 
| 128 | 
            -
                Free Physical memory: 128.00 MB
         | 
| 129 | 
            -
                Committed virtual memory: 64.00 MB
         | 
| 130 | 
            -
                Total swap space: 0.00 B
         | 
| 131 | 
            -
                Free swap space: 0.00 B
         | 
| 132 | 
            -
            2012-09-24 08:23:24.347+0000: JVM memory information:
         | 
| 133 | 
            -
                Free  memory: 44.93 MB
         | 
| 134 | 
            -
                Total memory: 81.44 MB
         | 
| 135 | 
            -
                Max   memory: 444.50 MB
         | 
| 136 | 
            -
                Garbage Collector: PS Scavenge: [PS Eden Space, PS Survivor Space]
         | 
| 137 | 
            -
                Garbage Collector: PS MarkSweep: [PS Eden Space, PS Survivor Space, PS Old Gen, PS Perm Gen]
         | 
| 138 | 
            -
                Memory Pool: Code Cache (Non-heap memory): committed=2.44 MB, used=1.96 MB, max=48.00 MB, threshold=0.00 B
         | 
| 139 | 
            -
                Memory Pool: PS Eden Space (Heap memory): committed=31.56 MB, used=21.47 MB, max=156.13 MB, threshold=?
         | 
| 140 | 
            -
                Memory Pool: PS Survivor Space (Heap memory): committed=2.88 MB, used=2.84 MB, max=2.88 MB, threshold=?
         | 
| 141 | 
            -
                Memory Pool: PS Old Gen (Heap memory): committed=47.00 MB, used=12.19 MB, max=333.38 MB, threshold=0.00 B
         | 
| 142 | 
            -
                Memory Pool: PS Perm Gen (Non-heap memory): committed=27.13 MB, used=27.09 MB, max=82.00 MB, threshold=0.00 B
         | 
| 143 | 
            -
            2012-09-24 08:23:24.351+0000: Operating system information:
         | 
| 144 | 
            -
                Operating System: Mac OS X; version: 10.8.1; arch: x86_64; cpus: 8
         | 
| 145 | 
            -
                Max number of file descriptors: 10240
         | 
| 146 | 
            -
                Number of open file descriptors: 100
         | 
| 147 | 
            -
                Process id: 1405@Andreass-MacBook-Pro-2.local
         | 
| 148 | 
            -
                Byte order: LITTLE_ENDIAN
         | 
| 149 | 
            -
                Local timezone: Europe/Stockholm
         | 
| 150 | 
            -
            2012-09-24 08:23:24.355+0000: JVM information:
         | 
| 151 | 
            -
                VM Name: Java HotSpot(TM) 64-Bit Server VM
         | 
| 152 | 
            -
                VM Vendor: Oracle Corporation
         | 
| 153 | 
            -
                VM Version: 23.1-b03
         | 
| 154 | 
            -
                JIT compiler: HotSpot 64-Bit Tiered Compilers
         | 
| 155 | 
            -
                VM Arguments: [-Djdk.home=, -Djruby.home=/Users/andreasronge/.rvm/rubies/jruby-1.7.0.preview2, -Djruby.script=jruby, -Djruby.shell=/bin/sh, -Djffi.boot.library.path=/Users/andreasronge/.rvm/rubies/jruby-1.7.0.preview2/lib/native/Darwin, -Xmx500m, -Xss2048k, -Djruby.memory.max=500m, -Djruby.stack.max=2048k, -Xbootclasspath/a:/Users/andreasronge/.rvm/rubies/jruby-1.7.0.preview2/lib/jruby.jar, -Dfile.encoding=UTF-8]
         | 
| 156 | 
            -
            2012-09-24 08:23:24.356+0000: Java classpath:
         | 
| 157 | 
            -
                 [loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.RC1-java/lib/neo4j-community/jars/neo4j-udc-1.8.RC1.jar
         | 
| 158 | 
            -
                 [loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/localedata.jar
         | 
| 159 | 
            -
                 [bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/rt.jar
         | 
| 160 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/dns_sd.jar
         | 
| 161 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/j3dutils.jar
         | 
| 162 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/MRJToolkit.jar
         | 
| 163 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/jai_core.jar
         | 
| 164 | 
            -
                 [loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.RC1-java/lib/neo4j-community/jars/org.apache.servicemix.bundles.jline-0.9.94_1.jar
         | 
| 165 | 
            -
                 [bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/jce.jar
         | 
| 166 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/vecmath.jar
         | 
| 167 | 
            -
                 [loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.RC1-java/lib/neo4j-community/jars/lucene-core-3.5.0.jar
         | 
| 168 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/libmlib_jai.jnilib
         | 
| 169 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/jai_codec.jar
         | 
| 170 | 
            -
                 [loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.RC1-java/lib/neo4j-community/jars/neo4j-kernel-1.8.RC1.jar
         | 
| 171 | 
            -
                 [bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/charsets.jar
         | 
| 172 | 
            -
                 [loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.RC1-java/lib/neo4j-community/jars/neo4j-graph-algo-1.8.RC1.jar
         | 
| 173 | 
            -
                 [loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/zipfs.jar
         | 
| 174 | 
            -
                 [loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/dnsns.jar
         | 
| 175 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/libJ3D.jnilib
         | 
| 176 | 
            -
                 [loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/sunec.jar
         | 
| 177 | 
            -
                 [loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.RC1-java/lib/neo4j-community/jars/geronimo-jta_1.1_spec-1.1.1.jar
         | 
| 178 | 
            -
                 [bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/jfr.jar
         | 
| 179 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/mlibwrapper_jai.jar
         | 
| 180 | 
            -
                 [loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.RC1-java/lib/neo4j-community/jars/neo4j-lucene-index-1.8.RC1.jar
         | 
| 181 | 
            -
                 [loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.RC1-java/lib/neo4j-community/jars/scala-library-2.9.1-1.jar
         | 
| 182 | 
            -
                 [loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.RC1-java/lib/neo4j-community/jars/neo4j-shell-1.8.RC1.jar
         | 
| 183 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/QTJava.zip
         | 
| 184 | 
            -
                 [loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar
         | 
| 185 | 
            -
                 [bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/JObjC.jar
         | 
| 186 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/libJ3DAudio.jnilib
         | 
| 187 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/libAppleScriptEngine.jnilib
         | 
| 188 | 
            -
                 [bootstrap] /Users/andreasronge/.rvm/rubies/jruby-1.7.0.preview2/lib/jruby.jar
         | 
| 189 | 
            -
                 [loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar
         | 
| 190 | 
            -
                 [bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/sunrsasign.jar
         | 
| 191 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/j3daudio.jar
         | 
| 192 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/AppleScriptEngine.jar
         | 
| 193 | 
            -
                 [bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/classes
         | 
| 194 | 
            -
                 [classpath + loader.1] file:/Users/andreasronge/projects/neo4j-wrapper/lib/
         | 
| 195 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/libJ3DUtils.jnilib
         | 
| 196 | 
            -
                 [bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/jsse.jar
         | 
| 197 | 
            -
                 [loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.RC1-java/lib/neo4j-community/jars/neo4j-graph-matching-1.8.RC1.jar
         | 
| 198 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/libQTJNative.jnilib
         | 
| 199 | 
            -
                 [loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.RC1-java/lib/neo4j-community/jars/neo4j-jmx-1.8.RC1.jar
         | 
| 200 | 
            -
                 [loader.2] file:/System/Library/Java/Extensions/j3dcore.jar
         | 
| 201 | 
            -
                 [loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.RC1-java/lib/neo4j-community/jars/server-api-1.8.RC1.jar
         | 
| 202 | 
            -
                 [bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/resources.jar
         | 
| 203 | 
            -
                 [loader.2] file:/usr/lib/java/libjdns_sd.jnilib
         | 
| 204 | 
            -
                 [loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.RC1-java/lib/neo4j-community/jars/neo4j-cypher-1.8.RC1.jar
         | 
| 205 | 
            -
            2012-09-24 08:23:24.358+0000: Library path:
         | 
| 206 | 
            -
                /Users/andreasronge/Library/Java/Extensions
         | 
| 207 | 
            -
                /Library/Java/Extensions
         | 
| 208 | 
            -
                /Network/Library/Java/Extensions
         | 
| 209 | 
            -
                /System/Library/Java/Extensions
         | 
| 210 | 
            -
                /usr/lib/java
         | 
| 211 | 
            -
                /Users/andreasronge/projects/neo4j-wrapper/lib
         | 
| 212 | 
            -
            2012-09-24 08:23:24.359+0000: System.properties:
         | 
| 213 | 
            -
                jruby.home = /Users/andreasronge/.rvm/rubies/jruby-1.7.0.preview2
         | 
| 214 | 
            -
                sun.boot.library.path = /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib
         | 
| 215 | 
            -
                user.country.format = SE
         | 
| 216 | 
            -
                gopherProxySet = false
         | 
| 217 | 
            -
                path.separator = :
         | 
| 218 | 
            -
                file.encoding.pkg = sun.io
         | 
| 219 | 
            -
                user.country = US
         | 
| 220 | 
            -
                sun.java.launcher = SUN_STANDARD
         | 
| 221 | 
            -
                sun.os.patch.level = unknown
         | 
| 222 | 
            -
                user.dir = /Users/andreasronge/projects/neo4j-wrapper/lib
         | 
| 223 | 
            -
                neo4j.ext.udc.source = neo4rb
         | 
| 224 | 
            -
                jdk.home = 
         | 
| 225 | 
            -
                sun.jnu.encoding = UTF-8
         | 
| 226 | 
            -
                jruby.memory.max = 500m
         | 
| 227 | 
            -
                sun.management.compiler = HotSpot 64-Bit Tiered Compilers
         | 
| 228 | 
            -
                http.nonProxyHosts = local|*.local|169.254/16|*.169.254/16
         | 
| 229 | 
            -
                jffi.boot.library.path = /Users/andreasronge/.rvm/rubies/jruby-1.7.0.preview2/lib/native/Darwin
         | 
| 230 | 
            -
                user.home = /Users/andreasronge
         | 
| 231 | 
            -
                user.timezone = Europe/Stockholm
         | 
| 232 | 
            -
                file.encoding = UTF-8
         | 
| 233 | 
            -
                jruby.stack.max = 2048k
         | 
| 234 | 
            -
                jruby.script = jruby
         | 
| 235 | 
            -
                user.name = andreasronge
         | 
| 236 | 
            -
                jruby.shell = /bin/sh
         | 
| 237 | 
            -
                sun.java.command = org/jruby/Main /Users/andreasronge/.rvm/rubies/jruby-1.7.0.preview2/bin/irb
         | 
| 238 | 
            -
                sun.arch.data.model = 64
         | 
| 239 | 
            -
                user.language = en
         | 
| 240 | 
            -
                awt.toolkit = sun.lwawt.macosx.LWCToolkit
         | 
| 241 | 
            -
                file.separator = /
         | 
| 242 | 
            -
                sun.io.unicode.encoding = UnicodeBig
         | 
| 243 | 
            -
                sun.cpu.endian = little
         | 
| 244 | 
            -
                socksNonProxyHosts = local|*.local|169.254/16|*.169.254/16
         | 
| 245 | 
            -
                ftp.nonProxyHosts = local|*.local|169.254/16|*.169.254/16
         | 
| 246 | 
            -
                sun.cpu.isalist = 
         | 
| 247 | 
            -
            2012-09-24 08:23:24.359+0000: Network information:
         | 
| 248 | 
            -
                Interface en3:
         | 
| 249 | 
            -
                    address: fe80:0:0:0:426c:8fff:fe3d:3526%5
         | 
| 250 | 
            -
                    address: 10.0.100.30
         | 
| 251 | 
            -
                Interface lo0:
         | 
| 252 | 
            -
                    address: 0:0:0:0:0:0:0:1
         | 
| 253 | 
            -
                    address: fe80:0:0:0:0:0:0:1%1
         | 
| 254 | 
            -
                    address: 127.0.0.1
         | 
| 255 | 
            -
            2012-09-24 08:23:24.361+0000: --- STARTUP diagnostics END ---
         | 
| 256 | 
            -
            2012-09-24 08:23:24.414+0000: Extension org.neo4j.kernel.KernelExtension[kernel jmx] loaded ok
         | 
| 257 | 
            -
            2012-09-24 08:23:24.418+0000: Extension org.neo4j.kernel.KernelExtension[kernel udc] loaded ok
         | 
| 258 | 
            -
            2012-09-24 08:23:24.622+0000: Extension org.neo4j.kernel.KernelExtension[shell] loaded ok
         | 
| 259 | 
            -
            2012-09-24 08:23:24.625+0000: --- STARTUP diagnostics for KernelDiagnostics:Versions START ---
         | 
| 260 | 
            -
            2012-09-24 08:23:24.625+0000: Graph Database: org.neo4j.kernel.EmbeddedGraphDatabase StoreId[time:1348475004216, id:-3863076731820723403, store version: 13561656364791302]
         | 
| 261 | 
            -
            2012-09-24 08:23:24.625+0000: Kernel version: Neo4j - Graph Database Kernel 1.8.RC1
         | 
| 262 | 
            -
            2012-09-24 08:23:24.625+0000: Neo4j component versions:
         | 
| 263 | 
            -
            2012-09-24 08:23:24.626+0000:   Neo4j - Graph Database Kernel 1.8.RC1
         | 
| 264 | 
            -
            2012-09-24 08:23:24.626+0000: --- STARTUP diagnostics for KernelDiagnostics:Versions END ---
         | 
| 265 | 
            -
            2012-09-24 08:23:24.628+0000: --- STARTUP diagnostics for NEO_STORE_VERSIONS START ---
         | 
| 266 | 
            -
            2012-09-24 08:23:24.628+0000: Store versions:
         | 
| 267 | 
            -
                Store versions:
         | 
| 268 | 
            -
                  NeoStore v0.A.0
         | 
| 269 | 
            -
                  NodeStore v0.A.0
         | 
| 270 | 
            -
                  RelationshipStore v0.A.0
         | 
| 271 | 
            -
                  RelationshipTypeStore v0.A.0
         | 
| 272 | 
            -
                  PropertyStore v0.A.0
         | 
| 273 | 
            -
                  PropertyIndexStore v0.A.0
         | 
| 274 | 
            -
                  StringPropertyStore v0.A.0
         | 
| 275 | 
            -
                  ArrayPropertyStore v0.A.0
         | 
| 276 | 
            -
            2012-09-24 08:23:24.628+0000: --- STARTUP diagnostics for NEO_STORE_VERSIONS END ---
         | 
| 277 | 
            -
            2012-09-24 08:23:24.629+0000: --- STARTUP diagnostics for NEO_STORE_ID_USAGE START ---
         | 
| 278 | 
            -
            2012-09-24 08:23:24.629+0000: Id usage:
         | 
| 279 | 
            -
                Id usage:
         | 
| 280 | 
            -
                  NodeStore: used=1 high=0
         | 
| 281 | 
            -
                  RelationshipStore: used=0 high=-1
         | 
| 282 | 
            -
                  RelationshipTypeStore: used=0 high=-1
         | 
| 283 | 
            -
                  PropertyStore: used=0 high=-1
         | 
| 284 | 
            -
                  PropertyIndexStore: used=0 high=-1
         | 
| 285 | 
            -
                  StringPropertyStore: used=1 high=0
         | 
| 286 | 
            -
                  ArrayPropertyStore: used=1 high=0
         | 
| 287 | 
            -
            2012-09-24 08:23:24.629+0000: --- STARTUP diagnostics for NEO_STORE_ID_USAGE END ---
         | 
| 288 | 
            -
            2012-09-24 08:23:24.629+0000: --- STARTUP diagnostics for PERSISTENCE_WINDOW_POOL_STATS START ---
         | 
| 289 | 
            -
            2012-09-24 08:23:24.629+0000: --- STARTUP diagnostics for PERSISTENCE_WINDOW_POOL_STATS END ---
         | 
| 290 | 
            -
            2012-09-24 08:23:24.629+0000: --- STARTUP diagnostics for KernelDiagnostics:StoreFiles START ---
         | 
| 291 | 
            -
            2012-09-24 08:23:24.630+0000: Disk space on partition (Total / Free / Free %): 250140434432 / 186726805504 / 25
         | 
| 292 | 
            -
            Storage files: (filename : modification date - size)
         | 
| 293 | 
            -
                  active_tx_log: 2012-09-24T10:23:24+0200 - 11.00 B
         | 
| 294 | 
            -
                  index:
         | 
| 295 | 
            -
                    lucene-store.db: 2012-09-24T10:23:24+0200 - 40.00 B
         | 
| 296 | 
            -
                    lucene.log.1: 2012-09-24T10:23:24+0200 - 16.00 B
         | 
| 297 | 
            -
                    lucene.log.active: 2012-09-24T10:23:24+0200 - 4.00 B
         | 
| 298 | 
            -
                  - Total: 2012-09-24T10:23:24+0200 - 60.00 B
         | 
| 299 | 
            -
                  lock: 2012-09-24T10:23:24+0200 - 0.00 B
         | 
| 300 | 
            -
                  messages.log: 2012-09-24T10:23:24+0200 - 19.74 kB
         | 
| 301 | 
            -
                  neostore: 2012-09-24T10:23:24+0200 - 54.00 B
         | 
| 302 | 
            -
                  neostore.id: 2012-09-24T10:23:24+0200 - 9.00 B
         | 
| 303 | 
            -
                  neostore.nodestore.db: 2012-09-24T10:23:24+0200 - 9.00 B
         | 
| 304 | 
            -
                  neostore.nodestore.db.id: 2012-09-24T10:23:24+0200 - 9.00 B
         | 
| 305 | 
            -
                  neostore.propertystore.db: 2012-09-24T10:23:24+0200 - 0.00 B
         | 
| 306 | 
            -
                  neostore.propertystore.db.arrays: 2012-09-24T10:23:24+0200 - 128.00 B
         | 
| 307 | 
            -
                  neostore.propertystore.db.arrays.id: 2012-09-24T10:23:24+0200 - 9.00 B
         | 
| 308 | 
            -
                  neostore.propertystore.db.id: 2012-09-24T10:23:24+0200 - 9.00 B
         | 
| 309 | 
            -
                  neostore.propertystore.db.index: 2012-09-24T10:23:24+0200 - 0.00 B
         | 
| 310 | 
            -
                  neostore.propertystore.db.index.id: 2012-09-24T10:23:24+0200 - 9.00 B
         | 
| 311 | 
            -
                  neostore.propertystore.db.index.keys: 2012-09-24T10:23:24+0200 - 38.00 B
         | 
| 312 | 
            -
                  neostore.propertystore.db.index.keys.id: 2012-09-24T10:23:24+0200 - 9.00 B
         | 
| 313 | 
            -
                  neostore.propertystore.db.strings: 2012-09-24T10:23:24+0200 - 128.00 B
         | 
| 314 | 
            -
                  neostore.propertystore.db.strings.id: 2012-09-24T10:23:24+0200 - 9.00 B
         | 
| 315 | 
            -
                  neostore.relationshipstore.db: 2012-09-24T10:23:24+0200 - 0.00 B
         | 
| 316 | 
            -
                  neostore.relationshipstore.db.id: 2012-09-24T10:23:24+0200 - 9.00 B
         | 
| 317 | 
            -
                  neostore.relationshiptypestore.db: 2012-09-24T10:23:24+0200 - 0.00 B
         | 
| 318 | 
            -
                  neostore.relationshiptypestore.db.id: 2012-09-24T10:23:24+0200 - 9.00 B
         | 
| 319 | 
            -
                  neostore.relationshiptypestore.db.names: 2012-09-24T10:23:24+0200 - 38.00 B
         | 
| 320 | 
            -
                  neostore.relationshiptypestore.db.names.id: 2012-09-24T10:23:24+0200 - 9.00 B
         | 
| 321 | 
            -
                  nioneo_logical.log.1: 2012-09-24T10:23:24+0200 - 16.00 B
         | 
| 322 | 
            -
                  nioneo_logical.log.active: 2012-09-24T10:23:24+0200 - 4.00 B
         | 
| 323 | 
            -
                  tm_tx_log.1: 2012-09-24T10:23:24+0200 - 0.00 B
         | 
| 324 | 
            -
            2012-09-24 08:23:24.635+0000: --- STARTUP diagnostics for KernelDiagnostics:StoreFiles END ---
         | 
| 325 | 
            -
            2012-09-24 08:23:24.636+0000: Started - database is now available
         | 
| 326 | 
            -
            2012-09-24 08:23:24.636+0000: GC Monitor started. 
         | 
| 327 | 
            -
            2012-09-24 08:32:31.222+0000: Stopping - database is now unavailable
         | 
| 328 | 
            -
            2012-09-24 08:32:31.226+0000: TM shutting down
         | 
| 329 | 
            -
            2012-09-24 08:32:31.233+0000: Closed log /Users/andreasronge/projects/neo4j-wrapper/lib/db/index/lucene.log
         | 
| 330 | 
            -
            2012-09-24 08:32:31.237+0000: Closed log /Users/andreasronge/projects/neo4j-wrapper/lib/db/nioneo_logical.log
         | 
| 331 | 
            -
            2012-09-24 08:32:31.238+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.relationshiptypestore.db.names hit=0 miss=0 switches=0 ooe=0
         | 
| 332 | 
            -
            2012-09-24 08:32:31.238+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.relationshiptypestore.db hit=0 miss=0 switches=0 ooe=0
         | 
| 333 | 
            -
            2012-09-24 08:32:31.239+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db.strings hit=0 miss=0 switches=0 ooe=0
         | 
| 334 | 
            -
            2012-09-24 08:32:31.239+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db.index.keys hit=4 miss=0 switches=0 ooe=0
         | 
| 335 | 
            -
            2012-09-24 08:32:31.240+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db.index hit=4 miss=0 switches=0 ooe=0
         | 
| 336 | 
            -
            2012-09-24 08:32:31.240+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db.arrays hit=0 miss=0 switches=0 ooe=0
         | 
| 337 | 
            -
            2012-09-24 08:32:31.241+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.propertystore.db hit=3 miss=0 switches=0 ooe=0
         | 
| 338 | 
            -
            2012-09-24 08:32:31.242+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.relationshipstore.db hit=0 miss=0 switches=0 ooe=0
         | 
| 339 | 
            -
            2012-09-24 08:32:31.243+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore.nodestore.db hit=4 miss=0 switches=0 ooe=0
         | 
| 340 | 
            -
            2012-09-24 08:32:31.244+0000: /Users/andreasronge/projects/neo4j-wrapper/lib/db/neostore hit=0 miss=17 switches=0 ooe=0
         | 
| 341 | 
            -
            2012-09-24 08:32:31.244+0000: NeoStore closed
         | 
| 342 | 
            -
            2012-09-24 08:32:31.244+0000: --- SHUTDOWN diagnostics START ---
         | 
| 343 | 
            -
            2012-09-24 08:32:31.244+0000: --- SHUTDOWN diagnostics END ---
         | 
    
        data/lib/db/neostore
    DELETED
    
    | Binary file | 
    
        data/lib/db/neostore.id
    DELETED
    
    | Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| @@ -1 +0,0 @@ | |
| 1 | 
            -
            RelationshipStore v0.A.0
         | 
| Binary file | 
| @@ -1 +0,0 @@ | |
| 1 | 
            -
            RelationshipTypeStore v0.A.0
         | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
    
        data/lib/db/tm_tx_log.1
    DELETED
    
    | Binary file |