ChangeLog 4.7 KB

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