Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What are dependencies in cache and types of dependencies
What are dependencies in cache and types of dependencies ?
✍: Guest
When you add an item to the cache, you can define dependency relationships that can
force that item to be removed from the cache under specific activities of dependenci
es.Example if the cache object is dependent on file and when the file data changes you
want the cache object to be update. Following are the supported dependency :-
ã File dependency :- Allows you to invalidate a specific cache item when a disk
based file or files change.
ã Time-based expiration :- Allows you to invalidate a specific cache item
depending on predefined time.
ã Key dependency :-Allows you to invalidate a specific cache item depending
when another cached item changes.
2007-10-23, 4578👍, 0💬
Popular Posts:
Describe in detail Basic of SAO architecture of Remoting? For these types of questions interviewer e...
Is Session_End event supported in all session modes ? Session_End event occurs only in “Inproc mode”...
Example of using Regular Expressions for syntax checking in JavaScript ... var re = new RegExp("^(&a...
Can Two Forms Be Nested? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields Can two forms ...
How To Join a List of Keys with a List of Values into an Array? - PHP Script Tips - PHP Built-in Fun...