Bug Cache without lifetime not working

There is a bug in this version
T

TnT

Guest
While testing 2.3.0 Beta 1 i figured out, caching without liefetime like this:

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:

Code:
\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

Continue reading...