By ikvm or any other tool, is it possible to port OrientDb to .NET(C#) ? I asked this because they said this is so tiny database :) Or converting low level java library to c# is not safe?

Yes someone can say, there is a REST api and we can use it by C# easily. But integrated usage is more effective. For example I could not install OrientDB server to windows. It stole 4 hours of my life! And no chance for me

Surely i think OrientDb is ok for production (web application)

Thx.

link|improve this question

44% accept rate
feedback

2 Answers

There is already Blueprints.NET and Pipes.NET, so you could use it and just port the OrientDB persistency layer to .NET. Happy forking ;)

link|improve this answer
I downloaded Bluprints.Net and it seems a socialgraph demo does not work. This subject highly related with this issue stackoverflow.com/questions/5559972/…. I dont have free time, My brain will blow up :( Neo4J, OrientDB, Redis, Bluprints, Gremlin, MongoDB. I think i will use provider pattern and after 4 months i will use BluprintsGremlinGraphProvider. But for now I need Social Graph and Notification! What do you suppose ? Thx. – Serhat Dincel Apr 10 '11 at 10:40
These products (Blueprints.Net and Pipes.net) are not ready for development.. I suspended my researches on them. – Serhat Dincel Apr 11 '11 at 7:12
OrientDB is now nearing 1.0 (rc2 expected tomorrow) and passing all Tinkerpop unit tests. – mindplay.dk Jun 16 '11 at 19:39
feedback

Take a look of RavenDB

I haven't used that because I'm not on .NET, but it looks a fine implementation. It essentially offers ACID transactions, RESTful HTTP protocol with schema-less JSON storage just like OrientDB.

link|improve this answer
RavenDB is a document database, not a graph database - it doesn't handle relations at all, you have to handle those manually on a case-by-case basis. It does do an excellent job if your need is to store unrelated (potentially complex) documents - but cannot replace a graph database, or for that matter a relational database and OR/M, unless, as said, your objects are unrelated documents, or unless you're willing to do a lot of dirty work by hand, such as cascading updates/deletes, removing stale foreign-key references, etc... – mindplay.dk Apr 9 at 16:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.