orientdb-odm
orientdb-odm copied to clipboard
A set of PHP libraries in order to use OrientDB from PHP
Hello team! I was about to try your project for testing purposes, and I realized that there were no release for 8 years, no commit for 3 years, no issue/PR...
``` $graph = new Graph(); $b1 = new Vertex('1'); $b2 = new Vertex('2'); $b3 = new Vertex('3'); $b4 = new Vertex('4'); $b5 = new Vertex('5'); $b6 = new Vertex('6'); $b1->connect($b2,...
Hi, Starting to poke into this and I am failing tests. It seems data isn't in the database, which the tests are looking for. 1) test\Doctrine\OrientDB\Integration\QueryBuilderTest::testSelect Doctrine\OrientDB\Binding\InvalidQueryException: { "errors": [{...
Would it make any sense to fork this project and rework it so it uses the binary interface. In other words, build it on top of the official PHP driver?...
Hi, I look about tutorial http://odino.org/starting-to-play-with-the-doctrine-orientdb-odm/ and previous iusses https://github.com/doctrine/orientdb-odm/issues/177 I've problem with this portion of configuration odm.mapper: class: Doctrine\ODM\OrientDB\Mapper arguments: documentProxyDirectory: %orientdb_proxy_dir% annotationReader: @odm.annotationreader calls: - [setDocumentDirectories, [ %orientdb_domain_dir%...
If any object value contains '%' sign in property, response throws Exception because OrientDB REST API cannot parse url. Any ideas except str_replace('%', '', $value) ??
Is there a reason why the caster uses a cache? To me it seems like the overhead of keeping a cache plus the lookups, reading and writing is actually a...
Basically, implements the UnitOfWork pattern.
Hi. I have a few questions: Is doctrine orientdb odm production ready? Is it still being updated and will be in a future? Is it possible to use all orientdb...