rebuild Model package for NoSQL drivers

This commit is contained in:
Anton Grebnev
2011-11-11 18:01:17 +04:00
parent 6aab56c814
commit 3c5a5d9603
14 changed files with 589 additions and 334 deletions

13
model/NoSqlDbDriver.php Normal file
View File

@ -0,0 +1,13 @@
<?php
/**
* @copyright NetMonsters <team@netmonsters.ru>
* @link http://netmonsters.ru
* @package Majestic
* @subpackage db
* @since 2011-11-11
*/
abstract class NoSqlDbDriver extends DbDriver
{
abstract function find($data, $params = array(), $cache_key = null);
}