Which PHP frameworks have the best support for working with NoSQL databases?

0

I would like to know which PHP frameworks have the best support for working with NoSQL databases?

The NoSQL banks I already have experience are MongoDB, Redis and Cassandra, but I'm interested in testing other options like LevelDB MemCache and HBase. However the options I have worked with do not have very good support implemented in the most modern PHP frameworks I usually use as Laravel 5 and ZF2.

Someone working with other frameworks where the job of configuring the drivers to work with these database is a more natural process? And that has an ODM implementation similar to the mongoose used with the node to perform queries but that is extensible to the framework style the ORM Eloquent style in Laravel?

Perhaps if there is no similar project we should start moving a community around a project focused on this need.

    
asked by anonymous 26.10.2016 / 19:07

1 answer

0

As I worked out the question, I found in the official MongoDB documentation a reference of the PHP libraries to work with Mongo, answering some of my questions.

link

I will search references from other banks and check if there is already a project that implements the configurable NoSQL database driver style Laravel DB Diver where the database choice is transparent (in the case of relational DB).

    
26.10.2016 / 19:07