A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/DatabaseCleaner/database_cleaner-neo4j below:

DatabaseCleaner/database_cleaner-neo4j: Strategies for cleaning Neo4j databases using Ruby. Can be used to ensure a clean state for testing.

Database Cleaner Adapter for Neo4j

This adapter is currently unmaintained. This means that bugs will not be fixed and features will not be added unless someone else does so. If you're interested in taking over maintenance, please open an issue and tell us about it!

Clean your Neo4j databases with Database Cleaner.

See https://github.com/DatabaseCleaner/database_cleaner for more information.

# Gemfile
group :test do
  gem 'database_cleaner-neo4j'
end
Truncation Transaction Deletion Yes Yes Yes

(Default strategy is denoted in bold)

ORM How to access Notes Neo4j DatabaseCleaner[:neo4j] Database type and path(URI) DatabaseCleaner[:neo4j, connection: {type: :server_db, path: 'http://localhost:7475'}].

Note that Truncation and Deletion strategies for Neo4j will just delete all nodes and relationships from the database.

Model fails to load with Neo4j using transactions

When you are using neo4j gem it creates schema and reads indexes upon loading models. These operations can't be done during a transaction. You have to preload your models before DatabaseCleaner starts a transaction.

Add to your rails_helper or spec_helper after requiring database_cleaner-neo4j:

require 'database_cleaner/neo4j'

Dir["#{Rails.root}/app/models/**/*.rb"].each do |model|
  load model
end

See LICENSE for details.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4