ChangeLog 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612
  1. 2010-02-23 Marek Habersack <[email protected]>
  2. * CachedVaryBy.cs: made serializable for 4.0+ (necessary for
  3. extensible output caching)
  4. 2010-02-03 Marek Habersack <[email protected]>
  5. * OutputCache.cs: DefaultProviderName checks if there was any
  6. provider configured and, if not, returns a built-in provider's
  7. name.
  8. * SqlCacheDependencyAdmin.cs: added
  9. * OutputCacheProviderCollection.cs: added
  10. * OutputCacheProvider.cs: added
  11. * OutputCacheModule.cs: uses the 4.0 extensible output cache
  12. provider model now (also internally in the 2.0 profile)
  13. OutputCacheProvider is retrieved on every request using
  14. HttpApplication.GetOutputCacheProviderName (4.0+). In the 2.0
  15. profile an instance of InMemoryOutputCacheProvider is always
  16. returned.
  17. * InMemoryOutputCacheProvider.cs: default output cache provider
  18. for ASP.NET 4.0, also used internally in the 2.0 profile.
  19. * CachedVaryBy.cs: made the generated key shorter
  20. * CacheItemPriorityQueueDebug.cs: debugging support for
  21. CacheItemPriorityQueue. Most of the code is compiled only when the
  22. DEBUG macro is defined. Debugging support includes recording of
  23. the queue operations sequence which is output to an XML file on
  24. appdomain shutdown. The recorded sequence files can be used to
  25. generate NUnit test cases for the priority queue (see
  26. ../Test/tools/README)
  27. * CacheItemPriorityQueue.cs: rewritten using an array based heap
  28. instead of a binary tree based one - implementation is simpler,
  29. faster and more elegant. Heap is initially 32 entries long and
  30. its size is doubled every time it fills up. After reaching a
  31. threshold (8192 entries currently) it is shrunk to the number of
  32. items + 1/3 of item count in order to preserve memory.
  33. * CacheItem.cs: added a Guid field to easier distinguish items
  34. (mostly for debugging purposes)
  35. * CacheDependency.cs: minor performance improvements
  36. * Cache.cs: better handling of timer periods
  37. 2010-01-25 Marek Habersack <[email protected]>
  38. * SqlCacheDependency.cs: added parameter checks to the
  39. constructors.
  40. Partially implemented 4.0 method CreateOutputCacheDependency
  41. * CacheItemUpdateReason.cs, CacheItemUpdateCallback.cs: added
  42. * CacheItem.cs: added OnUpdateCallback field
  43. * Cache.cs: implemented support for cache item update callback
  44. (3.5+)
  45. * AggregateCacheDependency.cs: added undocumented
  46. DependencyDispose method override
  47. 2010-01-22 Marek Habersack <[email protected]>
  48. * SubstitutionResponseElement.cs: implemented correct
  49. (de)serialization of the Callback delegate.
  50. * OutputCache.cs: implemented Serialize, Deserialize,
  51. DefaultProviderName and Providers.
  52. 2010-01-21 Marek Habersack <[email protected]>
  53. * DatabaseNotEnabledForNotificationException.cs, OutputCache.cs,
  54. FileResponseElement.cs, HeaderElement.cs, IOutputCacheEntry.cs,
  55. MemoryResponseElement.cs, OutputCacheProvider.cs,
  56. ResponseElement.cs, OutputCacheProviderCollection.cs,
  57. SubstitutionResponseElement.cs,
  58. TableNotEnabledForNotificationException.cs: added
  59. * CacheDependency.cs: default constructor is protected in 4.0
  60. 2010-01-06 Marek Habersack <[email protected]>
  61. * CacheItemPriorityQueue.cs: make sure lastParent is never null if
  62. root is not null in Enqueue. Possible fix for bug #567869
  63. 2009-12-01 Marek Habersack <[email protected]>
  64. * Cache.cs: ExpireItems dequeues the next item when a disabled
  65. item is found before continuing to look for items to expire. Fixes
  66. bug #559470. Patch from Adriaan van Kekem <[email protected]>,
  67. thanks.
  68. 2009-10-21 Marek Habersack <[email protected]>
  69. * CacheItemPriorityQueue.cs: lock the queue on enqueue/dequeue
  70. 2009-10-20 Marek Habersack <[email protected]>
  71. * OutputCacheModule.cs: keysCache and entriesToInvalidate
  72. dictionaries are allocated only when they are
  73. required. BuildManager's RemoveEntry envent is subscribed to only
  74. if cache actually has some entries.
  75. Added support for post-cache substitution.
  76. * CachedRawResponse.cs: data is stored in a list of DataItem
  77. instances instead of just in a single buffer. This enables support
  78. for post-cache substitution.
  79. 2009-10-05 Marek Habersack <[email protected]>
  80. * Cache.cs: if item expiration time exceeds the maximum value
  81. Timer accepts, use the latter - item will expire properly anyway,
  82. as the timer will be rescheduled for the item's expiration time
  83. once that item is bubbled to the top of the priority queue. Fixes
  84. bug #544171
  85. 2009-09-26 Marek Habersack <[email protected]>
  86. * CacheItemPriorityQueue.cs, CacheItem.cs, CacheItemEnumerator.cs:
  87. added
  88. * Cache.cs: factored out CacheItem and CacheItemEnumerator to
  89. separate files.
  90. Use reader-writer locks instead of Monitor.
  91. Added two 3.5sp1 properties - EffectivePrivateBytesLimit and
  92. EffectivePercentagePhysicalMemoryLimit.
  93. Added support for disabling cache item expiration.
  94. One timer is used to expire all timed items (instead of one timer
  95. per item). Timed items are kept in a priority queue.
  96. 2009-03-03 Marek Habersack <[email protected]>
  97. * CachedRawResponse.cs: headers are stored in NameValueCollection
  98. now.
  99. 2009-01-09 Marek Habersack <[email protected]>
  100. * Cache.cs: System.Threading.Timer.Change takes a long, not an
  101. int. The maximum value of sliding expiration is 365 days
  102. (31536000000ms) which fits within the value range of long. The
  103. previous cast to int might yield negative values in certain
  104. situations which was the reason for bug #464221. Fixes bug #464221
  105. 2008-10-21 Marek Habersack <[email protected]>
  106. * OutputCacheModule.cs: seal the class.
  107. Made OnRawResponseRemoved a static method.
  108. * CachedVaryBy.cs: seal the class.
  109. Use portable line terminators instead of literal '\n'.
  110. * Cache.cs: seal the CacheItem and CacheItemEnumerator classes.
  111. * CacheDependency.cs: dispose the associated dependency in the
  112. DependencyDispose method.
  113. * CachedRawResponse.cs: seal the class
  114. 2008-10-15 Marek Habersack <[email protected]>
  115. * OutputCacheModule.cs: do not take any action if Response returns
  116. null from GetCachedResponse.
  117. 2008-09-30 Juraj Skripsky <[email protected]>
  118. * CachedRawResponse.cs: Don't allocate a 32k buffer that is never
  119. used. Fixes enhancement bug #430963.
  120. 2008-09-29 Marek Habersack <[email protected]>
  121. * OutputCacheModule.cs: invalidate cache entries when the
  122. corresponding source file (.as?x) is recompiled by hooking up to
  123. System.Web.Compilation.BuildManager's build cache entry removal
  124. event. Fixes bug #429926
  125. 2008-09-26 Juraj Skripsky <[email protected]>
  126. * OutputCacheModule.cs: Consistently use InternalCache for
  127. CachedRawResponse items and Cache for CachedVaryBy items.
  128. Partial fix for bug #429926.
  129. 2008-08-11 Marek Habersack <[email protected]>
  130. * Cache.cs: dispose item timer when removing an entry. Fixes bug
  131. #416076. Patch provided by Adriaan van Kekem
  132. <[email protected]>, thanks!
  133. Pass onRemoveCallback along in Insert. Fixes bugs #324528 and
  134. #382644. Patch provided by Juraj Skripsky <[email protected]>,
  135. thanks!
  136. 2008-06-18 Marek Habersack <[email protected]>
  137. * SqlCacheDependency.cs: added
  138. 2008-05-30 Marek Habersack <[email protected]>
  139. * CacheDependency.cs: do not use synthetized event accessors (to
  140. avoid locks).
  141. 2008-05-23 Marek Habersack <[email protected]>
  142. * Cache.cs: optimize lock usage
  143. 2008-04-28 Marek Habersack <[email protected]>
  144. * Cache.cs: refactoring - move the timeout setting code to
  145. separate methods, so that it can be accessed from outside the
  146. class. Fixes bug #382644
  147. 2008-03-18 Geoff Norton <[email protected]>
  148. * Cache.cs: MS allows calling Insert in a removed handler, we need to
  149. avoid double locking here otherwise the Insert will never succeed.
  150. 2008-02-26 Kornél Pál <[email protected]>
  151. * CachedRawResponse.cs, OutputCacheModule.cs: Don't add Date header because
  152. servers usually add a Date header that would result in duplicate Date header
  153. sent to the client. Fixes bug #363404.
  154. 2007-12-31 Vladimir Krasnov <[email protected]>
  155. * Cache.cs: added DependencyCache property, a cache object for
  156. creating dependencies
  157. 2007-12-19 Juraj Skripsky <[email protected]>
  158. * Cache.cs: Replace periodic timer (60s) with per-cache-item expiration
  159. timers.
  160. 2007-08-17 Marek Habersack <[email protected]>
  161. * CacheDependency.cs: use DependencyChanged as a list of events.
  162. OnChanged now calls OnDependencyChanged, to notify
  163. AggregateCacheDependency that it has changed. Fixes bug #82419.
  164. 2007-08-14 Marek Habersack <[email protected]>
  165. * AggregateCacheDependency.cs: propagate changes in any child
  166. dependencies to the base class.
  167. 2007-06-25 Juraj Skripsky <[email protected]>
  168. * Cache.cs: Re-introduce "InvokePrivateCallbacks" accidentally
  169. removed in r80321.
  170. 2007-06-20 Marek Habersack <[email protected]>
  171. * OutputCacheModule.cs: use Context.InternalCache.
  172. * Cache.cs: 2.0 profile uses generic containers to keep the cache
  173. entries.
  174. Gotten rid of the InsertPrivate and InsertInternal methods. The
  175. latter was moved to one of the Insert overloads.
  176. Private entries are no longer handled specifically, because the
  177. internal cache is now kept in a separate object.
  178. Iterate over the entries when filling the ArrayList in the 2.0
  179. profile to avoid type cast exceptions.
  180. 2007-05-03 Igor Zelmanovich <[email protected]>
  181. * AggregateCacheDependency.cs:
  182. * CacheDependency.cs:
  183. added missing API.
  184. 2007-04-10 Marek Habersack <[email protected]>
  185. * CacheDependency.cs: add the NotifyFilters.Size to the
  186. watcher flags, so that we watch for modifications to a file when
  187. using Linux inotify.
  188. 2006-11-29 Marek Habersack <[email protected]>
  189. * CachedVaryBy.cs: Make sure that the vary:* header is generated
  190. only when allowed under the 2.0 profile.
  191. 2006-11-25 Marek Habersack <[email protected]>
  192. * AggregateCacheDependency.cs: A small code optimization.
  193. 2006-11-14 Marek Habersack <[email protected]>
  194. * Cache.cs:
  195. * CacheDependency.cs:
  196. * AggregateCacheDependency.cs: implement this one.
  197. 2006-09-11 Andrew Skiba <[email protected]>
  198. * CacheDependency.cs: ifdef TARGET_JVM
  199. 2006-08-03 Gonzalo Paniagua Javier <[email protected]>
  200. * CacheDependency.cs:
  201. * Cache.cs: check dependencies on other cache keys. Fixes bug #79002.
  202. 2006-03-18 Robert Jordan <[email protected]>
  203. * OutputCacheModule.cs: invoke the validation callbacks of
  204. HttpCachePolicy. Fixes bug #77825.
  205. 2006-03-14 Robert Jordan <[email protected]>
  206. * CachedVaryBy.cs: Fixed VaryByParam="*". Replaced request.Param
  207. with QueryString and Form lookups. Made the param name output case
  208. insensitive. Fixes bug #77757.
  209. 2005-10-24 Gonzalo Paniagua Javier <[email protected]>
  210. * Cache.cs: new internal method.
  211. 2005-09-08 Eyal Alaluf <[email protected]>
  212. * OutputCacheModule.cs: Use C# 1.0 style of delegate instantiating.
  213. Needed to compile Grasshopper (TARGET_J2EE) which uses MS C# 1.0
  214. compiler and does not use msc.
  215. 2005-09-02 Gonzalo Paniagua Javier <[email protected]>
  216. * Cache.cs: ignore exceptions thrown by removed item callbacks.
  217. 2005-09-02 Sebastien Pouliot <[email protected]>
  218. * Cache.cs: Added security permissions with Minimal level for
  219. AspNetHostingPermissionLevel (only LinkDemand as the class is sealed).
  220. * CacheDependency.cs: : Added security permissions with Minimal level
  221. for AspNetHostingPermissionLevel (note class is sealed only in 1.x).
  222. 2005-09-01 Eyal Alaluf <[email protected]>
  223. * CacheDependency.cs: TARGET_J2EE fixes.
  224. 2005-08-20 Gonzalo Paniagua Javier <[email protected]>
  225. * CacheDependency.cs: add missing ctor.
  226. 2005-08-15 Jackson Harper <[email protected]>
  227. * CacheItemPriority.cs:
  228. * CacheItemRemovedCallback.cs:
  229. * CacheItemRemovedReason.cs: New implementations.
  230. 2005-07-30 Miguel de Icaza <[email protected]>
  231. * OutputCacheModule.cs: Make synchronous.
  232. 2005-07-15 Lluis Sanchez Gual <[email protected]>
  233. * Cache.cs: New implementation.
  234. * CacheDependency.cs: New implementation.
  235. 2005-06-25 Gonzalo Paniagua Javier <[email protected]>
  236. * Cache.cs: added new InsertPrivate overload.
  237. 2005-06-25 Gonzalo Paniagua Javier <[email protected]>
  238. * Cache.cs:
  239. * CacheEntry.cs: style. Removed doc. comments.
  240. 2005-06-08 Ilya Kharmatsky <ilyak-at-mainsoft.com>
  241. * CacheDependency.cs - added TARGET_JVM directives in places,
  242. where file watching is using (Mainsoft's implementation currently
  243. doesn't support the feature).
  244. 2005-05-09 Gonzalo Paniagua Javier <[email protected]>
  245. * CacheEntry.cs: credits for this patch should go to mcs. it catched
  246. that the code after 'if ((_enumFlags & Flags.Removed) != 0)' was
  247. unreachable.
  248. 2005-04-28 Gonzalo Paniagua Javier <[email protected]>
  249. * ExpiresBuckets.cs:
  250. * Cache.cs:
  251. * CacheExpires.cs: fix NullReferenceException thrown sometimes when
  252. using sliding expiration and under high load. Patch by Eyal Alayuf from
  253. Mainsoft.
  254. 2005-04-20 Gonzalo Paniagua Javier <[email protected]>
  255. * CacheDependency.cs: remove warnings.
  256. 2005-04-01 Gonzalo Paniagua Javier <[email protected]>
  257. * CachedVaryBy.cs: fixed VaryByParam and wildcard (*). Patch by Ilya
  258. Kharmatsky (Mainsoft) that fixes bug #73981.
  259. 2005-04-01 Lluis Sanchez Gual <[email protected]>
  260. * CachedRawResponse.cs: Fix warning.
  261. 2004-11-08 Gonzalo Paniagua Javier <[email protected]>
  262. * CacheEntry.cs: convert the external DateTime to GMT, as everything
  263. else uses that timezone. Fixes bug #69194.
  264. 2004-10-03 Ben Maurer <[email protected]>
  265. * Cache.cs, CacheEntry.cs, CacheExpires.cs, ExpiresBuckets.cs:
  266. use UtcNow rather than Now.
  267. 2004-05-27 Patrik Torstensson <[email protected]>
  268. * ExpiresBucket.cs (FlushExpiredItems): fix csc and a typo bug
  269. 2004-05-27 Patrik Torstensson <[email protected]>
  270. * CacheEntry.cs,CacheExpires.cs,ExpiresBucket.cs,
  271. Cache.cs : Fixed deadlock issues, fixed
  272. items not correctly being flushed, fixed update
  273. of item when expiration has been updated more
  274. than 1 min (placed in wrong bucket),
  275. fixed deadlock during cache callback when item
  276. is removed due to expiriation.
  277. Rewrite of locking handling in Cache class, leading
  278. to better performance and less bugs.
  279. This rewrite is due to a number of bugs found
  280. in the output caching during load (leading to memory
  281. leaks and deadlocks)
  282. 2004-05-16 Patrik Torstensson <[email protected]>
  283. * ExpiresBucket.cs: Style changes plus;
  284. (Update): Fixed possible lock bug (bug 54531)
  285. (Expand): remove lock optimization due to it can cause newly
  286. added items to be lost.
  287. (Remove): fixed possible lock bug.
  288. 2004-04-16 Gonzalo Paniagua Javier <[email protected]>
  289. * Cache.cs: fix from Jan Jaros for NullRef (bug #56996).
  290. 2004-04-07 Lluis Sanchez Gual <[email protected]>
  291. * Cache.cs, CacheEntry.cs, ExpiresBuckets.cs: The value to use to
  292. specify infinite timeout in ReaderWriterLock is -1, not 0.
  293. 2004-03-19 Gonzalo Paniagua Javier <[email protected]>
  294. * Watcher.cs: Removed file. Jackson made it obsolete and already
  295. removed it from the .sources file.
  296. 2004-02-09 Jackson Harper <[email protected]>
  297. * ExpiresBucket.cs: Remove duplicate code. Fixes bug #54031.
  298. 2004-02-09 Jackson Harper <[email protected]>
  299. * Cache.cs: Close entries that are removed.
  300. * CacheDependency.cs: Use FileSystemWatcher instead of custom
  301. Watcher for file dependencies.
  302. * OutputCacheModule.cs: Make the varyby objects dependent on the
  303. cached page.
  304. 2004-02-05 Jackson Harper <[email protected]>
  305. * CacheDependency.cs: Handle cache keys that have not been added
  306. to the cache yet.
  307. 2004-02-02 Jackson Harper <[email protected]>
  308. * OutputCacheModule.cs: We can use file dependancies now.
  309. 2004-01-14 Jackson Harper <[email protected]>
  310. * Cache.cs: Return null when items are expired but have not been
  311. removed yet.
  312. * OutputCacheModule.cs: Handle sliding expirations. Remove hacks
  313. checking if the item is expired, the cache no longer returns
  314. expired items.
  315. 2004-01-14 Jackson Harper <[email protected]>
  316. * Cache.cs: When using sliding expiration update the cache objects
  317. expires time as well as the expires entry expire time because the
  318. objects expire time is checked when objects are pulled out. This
  319. fixex bug #52778.
  320. 2004-01-11 Jackson Harper <[email protected]>
  321. * OutputCacheModule.cs: Remove varyby objects when there are no
  322. more raw responses that belong to them.
  323. * CachedRawResponse.cs: Keep a reference to the VaryBy object that
  324. this response belongs to this is so the varyby can be cleaned up.
  325. * CachedVaryBy.cs: Keep a reference to the keys that belong to the
  326. varyby and a reference to the varyby's key.
  327. 2004-01-04 Jackson Harper <[email protected]>
  328. * OutputCacheModule.cs: Dont cache items when trace is enabled.
  329. 2004-01-04 Jackson Harper <[email protected]>
  330. * OutputCacheModule.cs: Update the date header value.
  331. * CachedRawResponse.cs: Expose a ref to the date header, so it can
  332. be easily set/updated. Remove unused methods and vars.
  333. 2004-01-04 Jackson Harper <[email protected]>
  334. * CacheDependency.cs: Copy all the entries into the entries array,
  335. set on removed callback for items that we are dependent on.
  336. * Cache.cs: Add method to get CacheEntry objects.
  337. * OutputCacheModule.cs: Make raw repsonse entries dependent on
  338. their varyby param entries.
  339. 2004-01-04 Jackson Harper <[email protected]>
  340. * OutputCacheModule.cs: VaryBy keys now need the HttpContext not just the request.
  341. * CachedVaryBy.cs: Handle vary by headers, and vary by custom.
  342. 2004-01-03 Gonzalo Paniagua Javier <[email protected]>
  343. * ExpiresBuckets.cs: set _intPos when expanding the array. Fixes bug
  344. 52541. Patch by Jan Jaros ([email protected]).
  345. 2003-11-21 Jackson Harper <[email protected]>
  346. * OutputCacheModule.cs: Only cache a page if it has a 200 status
  347. code. Fix tabbing.
  348. * CachedVaryBy.cs: Give raw response keys a name, use the
  349. httpmethod in the key, and delimit items with \n so it is easier
  350. to read when debugging.
  351. 2003-11-21 Jackson Harper <[email protected]>
  352. * OutputCacheModule.cs: Store a CachedVaryBy object for each
  353. cached page. Then store a CachedRawResponse for each combination
  354. of varried parameters for a page.
  355. * CachedRawResponse.cs: Do not need to store param values anymore
  356. those are stored in the CachedVaryBy now. Get the content length
  357. so we dont send back the entire buffer.
  358. * CachedVaryBy.cs: New file - holds the varyby data for a page,
  359. and a method to generate a key based on params. Right now this
  360. only works with VaryByParams. TODO: support VaryByHeaders and
  361. VaryByCustom.
  362. 2003-11-20 Jackson Harper <[email protected]>
  363. * Cache.cs: New method so non public cache items can be added.
  364. * CachedRawResponse.cs: New file - A snapshot of a response that
  365. is stored in the cache and can be used to create a new response.
  366. * OutputCacheModule.cs: Module for inserting and retrieving
  367. responses from the cache.
  368. 2003-04-09 Gonzalo Paniagua Javier <[email protected]>
  369. * CacheDependency.cs:
  370. * CacheEntry.cs:
  371. * Watcher.cs: added a FileSystemWatcher-like class for dependency checking.
  372. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  373. * Cache.cs:
  374. * CacheDefinitions.cs:
  375. * CacheDependency.cs:
  376. * CacheEntry.cs:
  377. * CacheExpires.cs:
  378. * ExpiresBuckets.cs: reformatted, make class status page happier. Does
  379. not work yet (wait for the next patch).
  380. 2002-12-27 Daniel Cazzulino <[email protected]>
  381. * CacheEntry.cs: several changes. New constants, use of constants
  382. defined in Cache.cs, modified locks to optimize perf. Fixed property
  383. sets which weren't using the keyword value to set the new values
  384. (don't know how this worked before!).
  385. * Cache.cs: changed singleton implementation to only create the object
  386. when actually used. Changed Insert overloads to use constants
  387. defined instead of hard values.
  388. * ExpiresBuchets: major changes. All locking now uses ReaderWriterLock
  389. class. Bucket now efectively reuses free indexes from removed items
  390. to avoid unnecessary expansions. Expansion now uses Array.CopyTo to
  391. add elements to the new list. Added private Int32Collection to
  392. handle int indexes efficiently (thanks Shawn Van Ness). See comments
  393. there.
  394. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  395. * Cache.cs: little fixes.
  396. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  397. * CacheDefinitions.cs: fixed a couple of enums.
  398. * CacheDependency.cs: the class is sealed.
  399. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  400. * CacheDependency.cs: fixed a couple of typos and don't throw
  401. NotImplementedException in constructors.
  402. 2001-12-21 Gaurav Vaish <[email protected]>
  403. * CacheDependency.cs: Some unimplemented methods to make build
  404. 2001-07-20 Patrik Torstensson ([email protected])
  405. * Cache.cs: Implemented. (90% ready)
  406. * CacheDefinitions.cs: Implemented.
  407. * CacheDependency.cs: Added. (20% ready)
  408. * CacheExpires: Implemented.
  409. * CacheEntry.cs: Implemented. (95% ready, going to be changed due to CacheDependecy support)
  410. * ExpiresBuckets.cs: Implemented.