ChangeLog 3.3 KB

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