ChangeLog 1.9 KB

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