While testing 2.3.0 Beta 1 i figured out, caching without liefetime like this:
PHP:
returns true, but
PHP:
returns false. Setting lifetime explicit to 0 also returns false.
Only Providing a livetime returns the expected cache result.
Only this works:
PHP:
In my use case i store an item which is frequently fetched...
Read more
Читать далее...
PHP:
\XF::app()->cache()->save('test', 'works');
returns true, but
PHP:
\XF::app()->cache()->fetch('test');
returns false. Setting lifetime explicit to 0 also returns false.
Only Providing a livetime returns the expected cache result.
Only this works:
PHP:
Код:
\XF::app()->cache()->save('test', 'works', 10);
\XF::app()->cache()->fetch('test');
In my use case i store an item which is frequently fetched...
Read more
Читать далее...