ChangeLog 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. 2003-11-21 Jackson Harper <[email protected]>
  2. * OutputCacheModule.cs: Store a CachedVaryBy object for each
  3. cached page. Then store a CachedRawResponse for each combination
  4. of varried parameters for a page.
  5. * CachedRawResponse.cs: Do not need to store param values anymore
  6. those are stored in the CachedVaryBy now. Get the content length
  7. so we dont send back the entire buffer.
  8. * CachedVaryBy.cs: New file - holds the varyby data for a page,
  9. and a method to generate a key based on params. Right now this
  10. only works with VaryByParams. TODO: support VaryByHeaders and
  11. VaryByCustom.
  12. 2003-11-20 Jackson Harper <[email protected]>
  13. * Cache.cs: New method so non public cache items can be added.
  14. * CachedRawResponse.cs: New file - A snapshot of a response that
  15. is stored in the cache and can be used to create a new response.
  16. * OutputCacheModule.cs: Module for inserting and retrieving
  17. responses from the cache.
  18. 2003-04-09 Gonzalo Paniagua Javier <[email protected]>
  19. * CacheDependency.cs:
  20. * CacheEntry.cs:
  21. * Watcher.cs: added a FileSystemWatcher-like class for dependency checking.
  22. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  23. * Cache.cs:
  24. * CacheDefinitions.cs:
  25. * CacheDependency.cs:
  26. * CacheEntry.cs:
  27. * CacheExpires.cs:
  28. * ExpiresBuckets.cs: reformatted, make class status page happier. Does
  29. not work yet (wait for the next patch).
  30. 2002-12-27 Daniel Cazzulino <[email protected]>
  31. * CacheEntry.cs: several changes. New constants, use of constants
  32. defined in Cache.cs, modified locks to optimize perf. Fixed property
  33. sets which weren't using the keyword value to set the new values
  34. (don't know how this worked before!).
  35. * Cache.cs: changed singleton implementation to only create the object
  36. when actually used. Changed Insert overloads to use constants
  37. defined instead of hard values.
  38. * ExpiresBuchets: major changes. All locking now uses ReaderWriterLock
  39. class. Bucket now efectively reuses free indexes from removed items
  40. to avoid unnecessary expansions. Expansion now uses Array.CopyTo to
  41. add elements to the new list. Added private Int32Collection to
  42. handle int indexes efficiently (thanks Shawn Van Ness). See comments
  43. there.
  44. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  45. * Cache.cs: little fixes.
  46. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  47. * CacheDefinitions.cs: fixed a couple of enums.
  48. * CacheDependency.cs: the class is sealed.
  49. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  50. * CacheDependency.cs: fixed a couple of typos and don't throw
  51. NotImplementedException in constructors.
  52. 2001-12-21 Gaurav Vaish <[email protected]>
  53. * CacheDependency.cs: Some unimplemented methods to make build
  54. 2001-07-20 Patrik Torstensson ([email protected])
  55. * Cache.cs: Implemented. (90% ready)
  56. * CacheDefinitions.cs: Implemented.
  57. * CacheDependency.cs: Added. (20% ready)
  58. * CacheExpires: Implemented.
  59. * CacheEntry.cs: Implemented. (95% ready, going to be changed due to CacheDependecy support)
  60. * ExpiresBuckets.cs: Implemented.