diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-25 23:00:46 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-25 23:00:46 -0700 |
commit | 994768b82101fdd2a08a92e30967ded6714b87dc (patch) | |
tree | bce337781fc5d4f399afa483b51596fb8166eedc /classes/Group_inbox.php | |
parent | b53b6b8769d5531c16ba58d4560119bcee8b39ff (diff) |
break up big inbox queries into lots of small ones
Diffstat (limited to 'classes/Group_inbox.php')
-rw-r--r-- | classes/Group_inbox.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/classes/Group_inbox.php b/classes/Group_inbox.php index b80ba4272..1af7439f7 100644 --- a/classes/Group_inbox.php +++ b/classes/Group_inbox.php @@ -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); + } } |