I was looking around cpan for modules that would accomplish what I am looking for, but need a bit of advice.
I have a script that queries a mysql db and returns the data into a web browser. Some of the queries can return thousands, to tens of thousands of records. I would like to write this data to a temporarily cache on the system. besides the data samples being so large,
I would like the user to be able to sort columns and type in a "filter box" to slim down the results, but instead of querying the DB again, to sort and filter based on the cache.
I saw Cache::FileCache but there wasn't much documentation and I saw in other threads it's very slow. I was hoping to find something well documented and possibly small examples to help me understand better.
Thank you for any suggestions on how to accomplish this task.