Thomas Sanchez
unread,Nov 10, 2013, 5:29:47 AM11/10/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Rathaxes dev
Hi guys,
The more I dig the graphDB the more I think it is what we want to
achieve but it is also kinda heavy to embed in an app (impossible
actually). I wonder, since our operations are quite simple, if we can
mimic some of the features with sqlite or another db:
- Bulbs is much more light than I expected, actually it is only a
thin python layer to map some python type into a db. There are also
connector for 2 dbs and that's it.
The gremlin support must be in the database.
- There are several graph db out there but they are all in Java. I
stumbled upon vertexdb, but I not a 100% fan;
- What would be really nice is the possibility to embed the db in
the app and not have an external daemon to run when we want to lookup
some template.
If it is ok with you, I wonder what SqlAlchemy has to offer to address
this problem?
If I sum up quickly:
- we want to be able to map Python structure into a db;
- get the relations between them obeying to some constraints;
- embedded in the application
What I can do:
- Define the datastructure we want in the db;
- define the datastructure interface;
- Map the datastructure with sqlachemy (sqlite backend?);
- Implement the interface as requests in the db.
Any comments ? Thoughts ?
Cheers,
--
Thomas Sanchez