TnT
Active member
- Affected version
- 2.3.0 Beta 1
While testing 2.3.0 Beta 1 i figured out, caching without liefetime like this:
returns true, but
returns false. Setting lifetime explicit to 0 also returns false.
Only Providing a livetime returns the expected cache result.
Only this works:
In my use case i store an item which is frequently fetched independently in cache and update this via cron.
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 independently in cache and update this via cron.