forked from GNUsocial/gnu-social
Merge branch 'master' into 0.9.x
Conflicts: classes/Memcached_DataObject.php
This commit is contained in:
commit
90a2563a90
@ -23,7 +23,7 @@ require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
|
|||||||
|
|
||||||
class Memcached_DataObject extends DB_DataObject
|
class Memcached_DataObject extends DB_DataObject
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Destructor to free global memory resources associated with
|
* Destructor to free global memory resources associated with
|
||||||
* this data object when it's unset or goes out of scope.
|
* this data object when it's unset or goes out of scope.
|
||||||
* DB_DataObject doesn't do this yet by itself.
|
* DB_DataObject doesn't do this yet by itself.
|
||||||
@ -62,14 +62,14 @@ class Memcached_DataObject extends DB_DataObject
|
|||||||
} else {
|
} else {
|
||||||
$i = DB_DataObject::factory($cls);
|
$i = DB_DataObject::factory($cls);
|
||||||
if (empty($i)) {
|
if (empty($i)) {
|
||||||
return null;
|
return false;
|
||||||
}
|
}
|
||||||
$result = $i->get($k, $v);
|
$result = $i->get($k, $v);
|
||||||
if ($result) {
|
if ($result) {
|
||||||
$i->encache();
|
$i->encache();
|
||||||
return $i;
|
return $i;
|
||||||
} else {
|
} else {
|
||||||
return null;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -122,7 +122,7 @@ class Memcached_DataObject extends DB_DataObject
|
|||||||
}
|
}
|
||||||
|
|
||||||
static function cacheKey($cls, $k, $v) {
|
static function cacheKey($cls, $k, $v) {
|
||||||
if (is_object($cls) || is_object($j) || is_object($v)) {
|
if (is_object($cls) || is_object($k) || is_object($v)) {
|
||||||
$e = new Exception();
|
$e = new Exception();
|
||||||
common_log(LOG_ERR, __METHOD__ . ' object in param: ' .
|
common_log(LOG_ERR, __METHOD__ . ' object in param: ' .
|
||||||
str_replace("\n", " ", $e->getTraceAsString()));
|
str_replace("\n", " ", $e->getTraceAsString()));
|
||||||
@ -262,18 +262,6 @@ class Memcached_DataObject extends DB_DataObject
|
|||||||
return new ArrayWrapper($cached);
|
return new ArrayWrapper($cached);
|
||||||
}
|
}
|
||||||
|
|
||||||
function cleanup()
|
|
||||||
{
|
|
||||||
global $_DB_DATAOBJECT;
|
|
||||||
|
|
||||||
if (isset($_DB_DATAOBJECT['RESULTFIELDS'][$this->_DB_resultid])) {
|
|
||||||
unset($_DB_DATAOBJECT['RESULTFIELDS'][$this->_DB_resultid]);
|
|
||||||
}
|
|
||||||
if (isset($_DB_DATAOBJECT['RESULTS'][$this->_DB_resultid])) {
|
|
||||||
unset($_DB_DATAOBJECT['RESULTS'][$this->_DB_resultid]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// We overload so that 'SET NAMES "utf8"' is called for
|
// We overload so that 'SET NAMES "utf8"' is called for
|
||||||
// each connection
|
// each connection
|
||||||
|
|
||||||
|
@ -214,7 +214,7 @@ class Notice extends Memcached_DataObject
|
|||||||
extract($options);
|
extract($options);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($is_local)) {
|
if (!isset($is_local)) {
|
||||||
$is_local = Notice::LOCAL_PUBLIC;
|
$is_local = Notice::LOCAL_PUBLIC;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user