mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-29 08:44:11 +02:00
DbObject: exists() should respect prefetch...
...also for negative lookups refs #12876
This commit is contained in:
parent
bd3ae6d181
commit
42aef0105d
@ -933,6 +933,12 @@ abstract class DbObject
|
||||
return $obj;
|
||||
}
|
||||
|
||||
protected static function classWasPrefetched()
|
||||
{
|
||||
$class = get_called_class();
|
||||
return array_key_exists($class, self::$prefetched);
|
||||
}
|
||||
|
||||
protected static function getPrefetched($key)
|
||||
{
|
||||
$class = get_called_class();
|
||||
@ -951,8 +957,6 @@ abstract class DbObject
|
||||
|
||||
protected static function hasPrefetched($key)
|
||||
{
|
||||
// TODO: temporarily disabled as of collisions with services
|
||||
//return false;
|
||||
$class = get_called_class();
|
||||
if (! array_key_exists($class, self::$prefetchStats)) {
|
||||
self::$prefetchStats[$class] = (object) array(
|
||||
@ -1088,6 +1092,8 @@ abstract class DbObject
|
||||
{
|
||||
if (static::getPrefetched($id)) {
|
||||
return true;
|
||||
} elseif (static::classWasPrefetched()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$class = get_called_class();
|
||||
|
Loading…
x
Reference in New Issue
Block a user