Mongo driver with separate CRUD commsnds, without profiler

This commit is contained in:
Anton Grebnev
2011-11-15 11:12:20 +04:00
parent 3c5a5d9603
commit 488655b788
3 changed files with 151 additions and 13 deletions

View File

@ -9,5 +9,6 @@
abstract class NoSqlDbDriver extends DbDriver
{
abstract function find($data, $params = array(), $cache_key = null);
abstract function find($collection, $condition = array(), $fields = array(), $cache_key = null);
}