1
0
miroir de https://github.com/nextcloud/server.git synchronisé 2024-07-30 08:15:57 +02:00

Allow indirect set in CappedMemoryCache

Cette révision appartient à :
Robin Appelman 2016-01-14 15:00:41 +01:00
Parent 8f89e3520d
révision d195584a32
2 fichiers modifiés avec 14 ajouts et 2 suppressions

Voir le fichier

@ -64,8 +64,8 @@ class CappedMemoryCache implements ICache, \ArrayAccess {
return $this->hasKey($offset);
}
public function offsetGet($offset) {
return $this->get($offset);
public function &offsetGet($offset) {
return $this->cache[$offset];
}
public function offsetSet($offset, $value) {

Voir le fichier

@ -64,4 +64,16 @@ class CappedMemoryCache extends \Test_Cache {
$this->assertFalse($this->instance->hasKey('2_value1'));
$this->assertFalse($this->instance->hasKey('3_value1'));
}
function testIndirectSet() {
$this->instance->set('array', []);
$this->instance['array'][] = 'foo';
$this->assertEquals(['foo'], $this->instance->get('array'));
$this->instance['array']['bar'] = 'qwerty';
$this->assertEquals(['foo', 'bar' => 'qwerty'], $this->instance->get('array'));
}
}