ChangeLog 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. 2003-04-09 Gonzalo Paniagua Javier <[email protected]>
  2. * CacheDependency.cs:
  3. * CacheEntry.cs:
  4. * Watcher.cs: added a FileSystemWatcher-like class for dependency checking.
  5. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  6. * Cache.cs:
  7. * CacheDefinitions.cs:
  8. * CacheDependency.cs:
  9. * CacheEntry.cs:
  10. * CacheExpires.cs:
  11. * ExpiresBuckets.cs: reformatted, make class status page happier. Does
  12. not work yet (wait for the next patch).
  13. 2002-12-27 Daniel Cazzulino <[email protected]>
  14. * CacheEntry.cs: several changes. New constants, use of constants
  15. defined in Cache.cs, modified locks to optimize perf. Fixed property
  16. sets which weren't using the keyword value to set the new values
  17. (don't know how this worked before!).
  18. * Cache.cs: changed singleton implementation to only create the object
  19. when actually used. Changed Insert overloads to use constants
  20. defined instead of hard values.
  21. * ExpiresBuchets: major changes. All locking now uses ReaderWriterLock
  22. class. Bucket now efectively reuses free indexes from removed items
  23. to avoid unnecessary expansions. Expansion now uses Array.CopyTo to
  24. add elements to the new list. Added private Int32Collection to
  25. handle int indexes efficiently (thanks Shawn Van Ness). See comments
  26. there.
  27. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  28. * Cache.cs: little fixes.
  29. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  30. * CacheDefinitions.cs: fixed a couple of enums.
  31. * CacheDependency.cs: the class is sealed.
  32. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  33. * CacheDependency.cs: fixed a couple of typos and don't throw
  34. NotImplementedException in constructors.
  35. 2001-12-21 Gaurav Vaish <[email protected]>
  36. * CacheDependency.cs: Some unimplemented methods to make build
  37. 2001-07-20 Patrik Torstensson ([email protected])
  38. * Cache.cs: Implemented. (90% ready)
  39. * CacheDefinitions.cs: Implemented.
  40. * CacheDependency.cs: Added. (20% ready)
  41. * CacheExpires: Implemented.
  42. * CacheEntry.cs: Implemented. (95% ready, going to be changed due to CacheDependecy support)
  43. * ExpiresBuckets.cs: Implemented.