ChangeLog 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. 2004-01-04 Jackson Harper <[email protected]>
  2. * OutputCacheModule.cs: Update the date header value.
  3. * CachedRawResponse.cs: Expose a ref to the date header, so it can
  4. be easily set/updated. Remove unused methods and vars.
  5. 2004-01-04 Jackson Harper <[email protected]>
  6. * CacheDependency.cs: Copy all the entries into the entries array,
  7. set on removed callback for items that we are dependent on.
  8. * Cache.cs: Add method to get CacheEntry objects.
  9. * OutputCacheModule.cs: Make raw repsonse entries dependent on
  10. their varyby param entries.
  11. 2004-01-04 Jackson Harper <[email protected]>
  12. * OutputCacheModule.cs: VaryBy keys now need the HttpContext not just the request.
  13. * CachedVaryBy.cs: Handle vary by headers, and vary by custom.
  14. 2004-01-03 Gonzalo Paniagua Javier <[email protected]>
  15. * ExpiresBuckets.cs: set _intPos when expanding the array. Fixes bug
  16. 52541. Patch by Jan Jaros ([email protected]).
  17. 2003-11-21 Jackson Harper <[email protected]>
  18. * OutputCacheModule.cs: Only cache a page if it has a 200 status
  19. code. Fix tabbing.
  20. * CachedVaryBy.cs: Give raw response keys a name, use the
  21. httpmethod in the key, and delimit items with \n so it is easier
  22. to read when debugging.
  23. 2003-11-21 Jackson Harper <[email protected]>
  24. * OutputCacheModule.cs: Store a CachedVaryBy object for each
  25. cached page. Then store a CachedRawResponse for each combination
  26. of varried parameters for a page.
  27. * CachedRawResponse.cs: Do not need to store param values anymore
  28. those are stored in the CachedVaryBy now. Get the content length
  29. so we dont send back the entire buffer.
  30. * CachedVaryBy.cs: New file - holds the varyby data for a page,
  31. and a method to generate a key based on params. Right now this
  32. only works with VaryByParams. TODO: support VaryByHeaders and
  33. VaryByCustom.
  34. 2003-11-20 Jackson Harper <[email protected]>
  35. * Cache.cs: New method so non public cache items can be added.
  36. * CachedRawResponse.cs: New file - A snapshot of a response that
  37. is stored in the cache and can be used to create a new response.
  38. * OutputCacheModule.cs: Module for inserting and retrieving
  39. responses from the cache.
  40. 2003-04-09 Gonzalo Paniagua Javier <[email protected]>
  41. * CacheDependency.cs:
  42. * CacheEntry.cs:
  43. * Watcher.cs: added a FileSystemWatcher-like class for dependency checking.
  44. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  45. * Cache.cs:
  46. * CacheDefinitions.cs:
  47. * CacheDependency.cs:
  48. * CacheEntry.cs:
  49. * CacheExpires.cs:
  50. * ExpiresBuckets.cs: reformatted, make class status page happier. Does
  51. not work yet (wait for the next patch).
  52. 2002-12-27 Daniel Cazzulino <[email protected]>
  53. * CacheEntry.cs: several changes. New constants, use of constants
  54. defined in Cache.cs, modified locks to optimize perf. Fixed property
  55. sets which weren't using the keyword value to set the new values
  56. (don't know how this worked before!).
  57. * Cache.cs: changed singleton implementation to only create the object
  58. when actually used. Changed Insert overloads to use constants
  59. defined instead of hard values.
  60. * ExpiresBuchets: major changes. All locking now uses ReaderWriterLock
  61. class. Bucket now efectively reuses free indexes from removed items
  62. to avoid unnecessary expansions. Expansion now uses Array.CopyTo to
  63. add elements to the new list. Added private Int32Collection to
  64. handle int indexes efficiently (thanks Shawn Van Ness). See comments
  65. there.
  66. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  67. * Cache.cs: little fixes.
  68. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  69. * CacheDefinitions.cs: fixed a couple of enums.
  70. * CacheDependency.cs: the class is sealed.
  71. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  72. * CacheDependency.cs: fixed a couple of typos and don't throw
  73. NotImplementedException in constructors.
  74. 2001-12-21 Gaurav Vaish <[email protected]>
  75. * CacheDependency.cs: Some unimplemented methods to make build
  76. 2001-07-20 Patrik Torstensson ([email protected])
  77. * Cache.cs: Implemented. (90% ready)
  78. * CacheDefinitions.cs: Implemented.
  79. * CacheDependency.cs: Added. (20% ready)
  80. * CacheExpires: Implemented.
  81. * CacheEntry.cs: Implemented. (95% ready, going to be changed due to CacheDependecy support)
  82. * ExpiresBuckets.cs: Implemented.