
Implement hash so that it will work with Sets
Reported by Andreas Ronge | March 6th, 2011 @ 11:51 AM | in 1.1.0
s = Set.new
s << Person.find(:name => 'foo')
s << Person.find(:name => 'foo')
s.size #=> 1
Comments and changes to this ticket
-
Andreas Ronge April 16th, 2011 @ 03:54 PM
- State changed from new to resolved
(from [1edef222ab044fce553fa65026b1b8d9092fac90]) Implemented hash method so that it will work with Sets [#160 state:resolved] https://github.com/andreasronge/neo4j/commit/1edef222ab044fce553fa6...
-
Andreas Ronge April 24th, 2012 @ 10:00 PM
(from [63f0d02152d68cabfad946914497301e34a46729]) Can now declare has_n/has_one relationship as Strings, (e.g. Person.has_one(:work_at).from(Company.employees)) closes #160 https://github.com/andreasronge/neo4j/commit/63f0d02152d68cabfad946...
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
Neo4j.rb is a graph database framework for JRuby.
It provides:
* Mapping of ruby objects to nodes in networks rather than in tables.
* Storage of ruby object to a file system.
* Fast traversal of relationships between nodes in a hugh node space.
* Transaction with rollbacks support.
* Indexing and quering of ruby objects.
* Integration with Rails
People watching this ticket
Referenced by
-
160 Implement hash so that it will work with Sets (from [1edef222ab044fce553fa65026b1b8d9092fac90]) Impleme...