[ANN] Package Store-Cache

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[ANN] Package Store-Cache

Wouter Gazendam
Hi,

I've just published "Store-Cache" to the Cincom public repository. It's a store speedup tool for users using store over high latency or low bandwith lines. It consists of two things
 - A query cache. This caches query results when loading or reconciling with store. This combats store's "chattiness".
 - A disk cache. This stores records on disk for items that are only inserted in the database, not updated. To be on the safe side the default configuration (see Store.DiskCache>>installBlobCacheConfig) only stores Blobs, since I'm not sure which records will never receive updates.

You can use Store-Cache in "query cache only" mode. During loading it will ask whether to enable the disk cache.

Precaution: Try it in a test image. Since it only hooks in the select side of store it will probably only hose up your image, not your db :)

Wouter


I forgot to add a license; I hereby state to release Store-Cache under the BSD license or the MIT license, whatever suits you.