Tagged Questions
9
votes
6answers
2k views
What is the difference between graph-based databases and object-oriented databases?
What is the difference between graph-based databases (http://neo4j.org/) and object-oriented databases (http://www.db4o.com/)?
7
votes
3answers
489 views
Handling data maintenance in Object Databases like db4o
One thing I have continually found very confusing about using an object database like db4o is how you are supposed to handle complex migrations that would normally be handled by SQL/PL-SQL.
For ...
5
votes
2answers
401 views
How to store objects created in IronPython to object databases
I'd like to use object database to persist some classes created in IronPython. The database is db4o for .NET 2.0 (downloaded today). The code looks like this:
import clr
...
4
votes
4answers
1k views
Example websites using db4o
I'm very impressed with my initial tests with db4o. However, i'm wondering just how many enterprise class websites are out there powered by db4o, i couldn't see any on the main website?
I can't see ...
2
votes
2answers
387 views
DB4O scalability
I'm looking for information about DB4O object database. I know it has client/server mode, but I have no idea how scalable it is. I'm a big lover of object db idea, but still couldn't find an ...
1
vote
2answers
40 views
How to realize persistence of a complex graph with an Object Database?
I have several graphs. The breadth and depth of each graph can vary and will undergo changes and alterations during runtime. See example graph.
There is a root node to get a hold on the whole graph ...
0
votes
2answers
183 views
What object databases allow indexing of everything in the database?
Currently, db4o does not allow indexing on the contents of collections. What object databases do allow indexing of any individual field in the database?
Example:
class RootClass
{
string ...