What is the best PHP mongodb class? #mongodb
Edit
by Surya Maurya - 9 years ago (2015-08-19)
Perform all kinds of actions with MongoDB
| I need a class to perform perform all kinds of actions with MongoDB. |
Ask clarification
2 Recommendations
This is a wrapper class to Perform common types MongoDB database queries.
It connects to a given MongoDB server and performs several types of common queries. Currently it can:
- Query collections using given filter options
- Query all documents in a collection
- Perform insert or remove operations from a list of parameters
| by Ciaran Moore package author 40 - 8 years ago (2016-11-15) Comment
I have been working on this class for about a week and a bit now.
It allows for all the basic CRUD actions, and queries, and I will be continuing to add more features over the coming weeks. |
XMongoDB : Build and execute queries to a MongoDB database
This package can build and execute queries to a MongoDB database.
It can compose queries to retrieve, insert, update and delete documents using a fluent interface to define several parameters of the queries.
It can also create a database and document indexes.
The parameters define values like the collections of documents to be accessed, conditions on the fields of the documents to match, order and range of the documents to retrieve, etc..
| by Manuel Lemos 26695 - 9 years ago (2015-08-20) Comment
This package is reasonably complete because not only it allows you to perform the basic operations to create, read, update and delete MongoDB documents but also can create the database and indexes that you may need for certain types of documents. |