You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2014/02/11 01:29:28 UTC

svn commit: r1566897 - /isis/site/trunk/content/reference/services/query-results-cache.md

Author: danhaywood
Date: Tue Feb 11 00:29:27 2014
New Revision: 1566897

URL: http://svn.apache.org/r1566897
Log:
fixing links

Modified:
    isis/site/trunk/content/reference/services/query-results-cache.md

Modified: isis/site/trunk/content/reference/services/query-results-cache.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/reference/services/query-results-cache.md?rev=1566897&r1=1566896&r2=1566897&view=diff
==============================================================================
--- isis/site/trunk/content/reference/services/query-results-cache.md (original)
+++ isis/site/trunk/content/reference/services/query-results-cache.md Tue Feb 11 00:29:27 2014
@@ -1,6 +1,6 @@
 Title: Query Results Cache [1.4.0-SNAPSHOT]
 
-The purpose of the `QueryResultsCache` is to improve response times to the user, by providing a short-term ([request-scoped](../more-advanced-topics/how-to-09-020-How-to-write-a-typical-domain-service.html)) cache of the value of some (safe or idempotent) method call.  This will typically be as the result of running a query, but could be any expensive operation.
+The purpose of the `QueryResultsCache` is to improve response times to the user, by providing a short-term ([request-scoped](../../more-advanced-topics/how-to-09-020-How-to-write-a-typical-domain-service.html)) cache of the value of some (safe or idempotent) method call.  This will typically be as the result of running a query, but could be any expensive operation.
 
 Caching such values is useful for code that loops "naively" through a bunch of stuff, performing an expensive operation each time.  If the data is such that the same expensive operation is made many times, then the query cache is a perfect fit.