BusProject / SalsaPress

SalsaPress connects WordPress to Salsa. Developed by the Bus Federation and Bus Project.
http://wordpress.org/extend/plugins/salsa-press/
8 stars 2 forks source link

Custom Field HTML Caching + Better Caching Overall #16

Open mojowen opened 11 years ago

mojowen commented 11 years ago

Right now doesn't cache custom fields - any form/event with custom fields will do an http request for the html structure of the custom fields EVERY time. This is no good.

HTML for even a single row is probably larger than the usual caching process used in SalaPress - WP Transients.

Transient API may not be the best home for caching - 40 characters can probably barely hold the Salsa results - should just put em in get_option('salsapress_caches') which stores which transients are in use.

Will still need to workout a way to expire these caches.

mojowen commented 11 years ago

Maybe something here WP-TLC-Transients