Fixed
Details
Details
Assignee
Pothys - MitrahSoft
Pothys - MitrahSoftReporter
Oleksandr Zavadskyy
Oleksandr ZavadskyyPriority
Labels
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Affects versions
Created 23 March 2023 at 10:07
Updated 7 June 2024 at 16:15
Resolved 25 May 2023 at 08:15
Create ehcache with distribution type “automatic“.
Create function:
function testJsonbEhcache(){ var cacheKey = 'jsonb_test1'; var res = queryExecute('SELECT ''{"a" : "aab"}''::jsonb AS result'); var jsonbCol = res.result[1]; writeDump('before cache'); writeDump(jsonbCol); cachePut(cacheKey, jsonbCol); var cachedval = cacheGet(cacheKey); writeDump('after cache'); writeDump(cachedval); abort; }
Expected result (without distribution):
Actual result:
Comes back as a string starting with
lucee-serialized:..
(adding as text so people can search for this problem)