I was wondering - are there any performance improvements in the new one?
b
bod
02/23/2026, 1:51 PM
Yes indeed, especially around the SQL cache.
s
scana
02/24/2026, 11:00 AM
Awesome, we'll be trying it out in March I believe. Pardon the lazyweb here - I think it technically should be possible but I assume that you'd know best - is it possible to run both old one and new one side by side?
b
bod
02/24/2026, 11:08 AM
It is possible if you're going to have 2 different caches (so, probably, 2 different clients).
thank you color 1
s
scana
02/24/2026, 11:09 AM
We'll most likely AB test the change - so a single client, but using one or the other
b
bod
02/24/2026, 11:12 AM
Oooh then yeah, this is possible. They use different package names so can cohabit in the same app. Note that the new SQL cache will delete the old cache data and schema from the database the first time it runs. So from that point, you can't go back to the old cache. Unless you use 2 different files (one for the old cache / one for the new cache).
s
scana
02/24/2026, 11:16 AM
Awesome - unfortunately we don't use SQL cache yet, just in-memory one, however we really would like to enable it but now that there is a new version you've just released, there is no point in doing so before upgrading. We just want to make a quick check that our in-memory one works fine after upgrade and then we will start implementing the SQL one kodee happy