laruence / yac

A fast, lock-free, shared memory user data cache for PHP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

【建议】get新增支持获取多维数组的某一项

AndyChanCode opened this issue · comments

commented

类似这种:

$yac = new Yac();
$yac->set('my', ['a' => ['b' => 'bbb', 'c' => 'ccc']]);
$yac->get('my.a.b');

这个比较麻烦,因为数组是序列化后存到共享内存的