The cache supports using a MySQL table as a storage location. It should also support at least PostgreSQL as well.
Currently MySQL specifics are:
setting MyISAM in the creation table (because it's a lot faster than InnoDB for our use case)
Using INSERT IGNORE to write cache misses (there's a race condition otherwise and the DB will complain about duplicate keys and possibly break the page)
The cache supports using a MySQL table as a storage location. It should also support at least PostgreSQL as well.
Currently MySQL specifics are:
INSERT IGNORE
to write cache misses (there's a race condition otherwise and the DB will complain about duplicate keys and possibly break the page)