summaryrefslogtreecommitdiff
path: root/classes/Token.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-09-26 12:09:41 -0400
committerEvan Prodromou <evan@controlyourself.ca>2008-09-26 12:09:41 -0400
commite2e6bbb298e8b41573e78c6acfd764cc95f6954a (patch)
treeff94ad4c3b19b13f15394090f0b0fe6e1517051b /classes/Token.php
parent7ff02bb7d4483b3dc24edd78551a3936798056a8 (diff)
caching layer for DB/DataObject
I added a new class, Memcached_DataObject, that will (optionally) fetch data out of a memcached server if it's available. This only works on 'staticGet'. Methods that write to the database (insert, update, delete) will clear and set the cache correctly, too. darcs-hash:20080926160941-5ed1f-922de078b4c1941853ad014edf9a17fae486f8cf.gz
Diffstat (limited to 'classes/Token.php')
-rw-r--r--classes/Token.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/classes/Token.php b/classes/Token.php
index a91b19f8e..ef7ee20c0 100644
--- a/classes/Token.php
+++ b/classes/Token.php
@@ -2,9 +2,9 @@
/**
* Table Definition for token
*/
-require_once 'DB/DataObject.php';
+require_once 'classes/Memcached_DataObject.php';
-class Token extends DB_DataObject
+class Token extends Memcached_DataObject
{
###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */
@@ -19,7 +19,7 @@ class Token extends DB_DataObject
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
/* Static get */
- function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Token',$k,$v); }
+ function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Token',$k,$v); }
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE