ChangeLog 4.3 KB

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