Sha256: b608a3c1833c4e870b5adef4721c0c636fbdea52b337aae572d98acadb058277

Contents?: true

Size: 1.53 KB

Versions: 43

Compression:

Stored size: 1.53 KB

Contents

#=== Neo4j.rb configuration settings


# Examples of not using the Neo4j id (neo_id)

# Generated UUID stored as a neo4j property on my_id
#id_property: my_id
#id_property_type: :auto
#id_property_type_value: :uuid

# Example, (probably more useful directly on ActiveGraph::Node classes instead as a global configuration)
#id_property: title_id
#id_property_type: :on
#id_property_type_value: :some_method

# TODO
# if identity map should be on or not
# It may impact the performance. Using the identity map will keep all loaded wrapper node/relationship
# object in memory for each thread and transaction - which may speed up or slow down operations.
identity_map: false

# TODO
# When using the ActiveGraph::Model you can let neo4j automatically set timestamps when updating/creating nodes.
# If set to true neo4j.rb automatically timestamps create and update operations if the model has properties named created_at/created_on or updated_at/updated_on
# (similar to ActiveRecord).
timestamps: true

# Store a property on objects to cache their Node/Relationship class. It prevents each object load from requiring two database queries.
# Strings shorter than 44 characters are classified, so this will have almost no impact on disk footprint. See http://docs.neo4j.org/chunked/stable/short-strings.html.
# Alternatively, call class method ActiveGraph::Node:cache_class to set this on specific models.
# By default, this property is called _classname, set as symbol to override.
cache_class_names: true
# class_name_property:  :_classname

transform_rel_type: :upcase

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
activegraph-12.0.0.beta.5 config/neo4j/config.yml
activegraph-12.0.0.beta.4 config/neo4j/config.yml
activegraph-11.5.0.beta.3 config/neo4j/config.yml
activegraph-12.0.0.beta.3 config/neo4j/config.yml
activegraph-12.0.0.beta.2 config/neo4j/config.yml
activegraph-11.5.0.beta.2 config/neo4j/config.yml
activegraph-12.0.0.beta.1 config/neo4j/config.yml
activegraph-11.5.0.beta.1 config/neo4j/config.yml
activegraph-11.5.0.alpha.1 config/neo4j/config.yml
activegraph-11.4.0 config/neo4j/config.yml
activegraph-11.3.1 config/neo4j/config.yml
activegraph-11.3.0 config/neo4j/config.yml
activegraph-11.2.0 config/neo4j/config.yml
activegraph-11.1.0 config/neo4j/config.yml
activegraph-11.1.0.beta.1 config/neo4j/config.yml
activegraph-11.1.0.alpha.4 config/neo4j/config.yml
activegraph-11.1.0.alpha.3 config/neo4j/config.yml
activegraph-11.1.0.alpha.2 config/neo4j/config.yml
activegraph-11.1.0.alpha.1 config/neo4j/config.yml
activegraph-10.2.0.beta.1 config/neo4j/config.yml