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.
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.