Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What are dependencies in cache and what are the different types of dependencies ?
.NET INTERVIEW QUESTIONS - What are dependencies in cache and what are the different 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 dependencies. 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.
2009-05-05, 4219👍, 0💬
Popular Posts:
Regarding C Coding Given: Line in file Contents 30 int * someIDs, theFirst, *r; 110 someIDs =GetSome...
What is the difference between mysql_fetch_object() and mysql_fetch_array() functions in PHP? mysql_...
What are the types of variables x, y, y and u defined in the following code? #define Atype int* type...
I have 5 questions please give me the answer ,explanation,suggestions if any?? what is PMP(project m...
How To Enter Microseconds in SQL Statements? - MySQL FAQs - Introduction to SQL Date and Time Handli...