EM
Подскажите, а есть готовые решения, чтобы на базе vshard был распределенный key-value LRU кеш? Что-то похожее на Memcached...
Size: a a a
EM
DS
AB
EM
MF
I
try {
$appsSpace = $this->tarantool->getSpace('apps');
} catch (\Exception $e) {
$schema = $this->tarantool->getSpaceById(Space::VSPACE_ID);
$result = $schema->select(Criteria::key([512])->andGeIterator());
$this->logger->error(‘Space 'apps' does not exist. Current spaces: ‘, $result);
}
получаю:Space 'apps' does not exist. Current spaces: []I
DS
try {
$appsSpace = $this->tarantool->getSpace('apps');
} catch (\Exception $e) {
$schema = $this->tarantool->getSpaceById(Space::VSPACE_ID);
$result = $schema->select(Criteria::key([512])->andGeIterator());
$this->logger->error(‘Space 'apps' does not exist. Current spaces: ‘, $result);
}
получаю:Space 'apps' does not exist. Current spaces: []MF
I
I
$tarantool->evaluate('return box.space._space:select()’);DS
MF
DS
MF
DS