Download presentation
Presentation is loading. Please wait.
Published byJulia Freeman Modified over 8 years ago
1
Advance Caching Techniques Keen Haynes MKAD khaynes@mkad.com SCCFUG Winter 2002 Conference
2
Introduction What is caching? Why is it important to me? What can I cache? How do I leverage caching
3
Introduction (cont.) Template Cache Trusted Cache Database Connection Cache or Pooling Query Caching
4
Template Cache Cache the HTML generated by a template Cache for a specified period Caching can be client-side, server-side or both
5
Speeds up page rendering when dynamic content does not have to be retrieved each time a user accesses the page. To accomplish this, cfcache creates temporary files that contain the static HTML returned from a ColdFusion page.
6
(cont.) <cfcache action = "cache" or "flush" or "clientCache" or "optimal" username = "username" password = "password" protocol = "protocol name" timeout = “timeout date-time" directory = "directory name for map file" cacheDirectory =“directory name for cached pages" expireURL = "wildcarded URL reference" port = "port-number">
7
(cont.) Client-side caching <CFCACHE ACTION=“CLIENTCACHE” Server-side caching <CFCACHE ACTION=“CACHE” Optimal – combination of client & server <CFCACHE ACTION=“OPTIMAL” Refresh a cached page <CFCACHE ACTION=“FLUSH”
8
(cont.) <CFCACHE ACTION=“CACHE” TIMEOUT=“#DateAdd(“h”, “-4”, Now())#”> <CFCACHE ACTION=“FLUSH” EXPIREURL=“Customer.cfm?*”
9
Trusted Cache When checked, any requested files found to currently reside in the template cache will not be inspected for potential updates – recommended for sites that do not update during the life of the server.
10
Trusted Cache (cont.) Refreshing the template cache –Uncheck the 'Trusted Cache' option in the ColdFusion Administrator. –Click Apply. –Check the "Trusted Cache" option. –Click Apply.
11
Caching and CF Admin
12
Database Connection Caching If "Maintain Database Connections" is enabled for a data source, CF keeps the connection open after its first connection to the database. It does not log out of the database after this first connection. Will create a new connection if a request is using a data source connection that is already opened, and another request is received The connection pool can increase up to the setting for simultaneous connections limit which is set for each data source.
13
Database Connection Caching (cont.)
14
Caching and database queries What does ColdFusion do when it sees a query? Cachedwithin Cachedafter
15
Caching and database queries (cont) What does ColdFusion do when it sees a query? –Passes SQL content to appropriate driver (handled by a thread) –Waits for results to return before processing rest of tag –Will use existing instance of driver if data source already in use –Will cache connection information if “Maintain Database Connections” is selected
16
Caching and database queries (cont) <CFQUERY Name=“States” DATASOURCE=“test” CACHEDWITHIN=#CreateTimeSpan(0,1,0,0)#> SELECT state_name FROM tbl_state CACHEDWITHIN (TIMESPAN) – caches the query results for a specified time CACHEDAFTER (DATE) – caches the query based on a particular date and time
17
Caching and database queries (cont) <CFQUERY Name=“us_states” DATASOURCE=“States” SELECT * FROM us_states ORDER BY State
18
Caching and database queries (cont) <CFQUERY Name=“us_states” DATASOURCE=“States” CACHEDWITHIN=#CreateTimeSpan(0,1,0,0)#> SELECT * FROM us_states ORDER BY State
19
Caching and database queries (cont) Points to remember: Queries are cached on a server-wide basis Documentation states query must use same SQL statement, data source, query name, user name, password, and DBTYPE (I did not find this to be true for query name ) SQL statements must be exactly the same – this includes even tabbing
20
Caching and database queries (cont) <CFQUERY Name=“States” DATASOURCE=“test” CACHEDWITHIN=#CreateTimeSpan(0,1,0,0)#> SELECT state_name FROM tbl_state IS NOT THE SAME QUERY AS <CFQUERY Name=“States” DATASOURCE=“test2” CACHEDWITHIN=#CreateTimeSpan(0,1,0,0)#> SELECT state_name FROM tbl_state
21
Caching and database queries (cont) <CFQUERY Name=“States” DATASOURCE=“test” CACHEDWITHIN=#CreateTimeSpan(0,1,0,0)#> SELECT state_name FROM tbl_state IS NOT THE SAME QUERY AS <CFQUERY Name=“States” DATASOURCE=“test” CACHEDWITHIN=#CreateTimeSpan(0,1,0,0)#> SELECT state_name FROM tbl_state
22
Caching and database queries (cont) <cfquery name="us_states" datasource="States" CACHEDWITHIN=#CreateTimeSpan(0,1,0,0)#> SELECT * (Note: tabbing) FROM us_states ORDER BY State
23
Caching and database queries (cont) More points to remember: Queries containing dynamic values will result in an instance of each record setting being cached Max limit of 100 cached queries was removed with CF4.5 Cached queries will not reflect changes to the database until the cache interval has expired.
24
Caching and database queries (cont) Forcing an update of cached queries This can be accomplished by following queries that effect changes with a CFQUERY that contains a negative CACHEDWITHIN value <CFQUERY Name=“Customers” DATASOURCE=“test” CACHEDWITHIN=#CreateTimeSpan(0,0,0,-1)#> SELECT customer_name FROM tbl_customer
25
Caching and database queries (cont) UPDATE <CFQUERY Name=“Customers” DATASOURCE=“test” CACHEDWITHIN=#CreateTimeSpan(0,0,0,-1)#> SELECT customer_name FROM tbl_customer
26
Advance Security Caching and CF Admin Security Server Policy Store Cache caches Advanced security information. By default, it is notified of administrative changes to the policy store once every minute. Using this cache provides the most noticeable performance improvements with Advanced security. Security Server Authorization Cache caches each unique isAuthorized call. ColdFusion Server Cache caches isAuthorized and isProtected requests.
27
Advance Security Caching and CF Admin (cont.)
29
The CFML Language Reference ommits[sic] a new ColdFusion Server 5 tag, cfobjectcache. It clears, or flushes, the entire query cache. The action attribute must be set to clear. No other values are supported. http://livedocs.macromedia.com/cf50docs/CF ML_Reference/Tags78.jsp#1102316http://livedocs.macromedia.com/cf50docs/CF ML_Reference/Tags78.jsp#1102316
30
Summary Things to consider –Overhead –Need for “current” information Identify candidates for caching – both long running and frequently called queries and templates Testing to verify expected results
31
?
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.