break up big inbox queries into lots of small ones

This commit is contained in:
Evan Prodromou
2009-06-25 23:00:46 -07:00
parent b53b6b8769
commit 994768b821
6 changed files with 160 additions and 75 deletions

View File

@@ -14,8 +14,14 @@ class Group_inbox extends Memcached_DataObject
public $created; // datetime() not_null
/* Static get */
function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Group_inbox',$k,$v); }
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE
function &pkeyGet($kv)
{
return Memcached_DataObject::pkeyGet('Group_inbox', $kv);
}
}