Is there any way to confirm that my caching is working? I've got a query
cached but it still takes the same long amount of time on each page view.
For example, this query:
groupings = db((db.item.status=='active') &
(db.item.grouping!='test')).select(db.item.grouping,
orderby=db.item.grouping, distinct=True, cache=(cache.ram,
360))
Creates the list of categories on the left of this page:
http://pricetack.com/item/texas-doggie-tie-medium-110
If I do cache.disk, will I actually see the content in a file somewhere?