Changes between Initial Version and Version 4 of Ticket #1261
- Timestamp:
- Mar 23, 2009, 1:10:13 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1261
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #1261 – Description
initial v4 1 1 Implement a global, file-based, cache that can be used to store pre-processed static data. This can, for example, be used in cases were loading data from the database takes a long time but the result is guaranteed to never change. This result could then be stored as a file in the static cache which should be a lot quicker to access than to re-query the database for the same data the next time we need it. I have two concrete examples: 2 2 3 * Overview and correction factor plots. The never change. We should be able to save a lot by storing the images in the static cache. 3 * Overview and correction factor plots. The never change. We should be able to save a lot by storing the images in the static cache. See #1262. 4 4 * List of position numbers used by experiment explorer. See #903. This is one of the major remaning performance hogs in experiment explorer. The list is currently cached in the user session. With a file-based cache we can cache it longer. 5 5