- Added Filtering
[activemongo.git] / README
blob35cd0884758bc03b446cc7be3e014167586f3655
1 Really simple ActiveRecord for MongoDB
2 ----------------------------------------
4 This class is under development, don't use it yet.
6 What it does now:
8 - Handle MongoDB connection, conecting once when it is needed
9 - Define a Collection as a class
10 - Abstracts iteration over a dataset
11 - Efficient save() which creates or updates efficiently (ussing $set, $pushAll, $pullAll) a record
12 - Provides simple queries interface, but allows to get MongoCollection for complex queries in sub-classes
13 - Delete current object, Drop() table
14 - Support filtering per property
16 TODO:
17     - Add PHPDoc to abstract class 
18     - Add pre and post save Hooks
19     - Add efficient support for references to another Record, and an efficient way to load it (with one query if possible)
20     - Add Support for efficient updates on nested arrays