Struct Entries: 18 |
additional | Struct (ordered) | Pattern | string | <cfcache [action="string"] [key="string"] [id="any"] [throwonerror="boolean"] [name="string"] [metadata="string"] [value="any"] [cachename="string"] [username="string"] [password="string"] [protocol="string"] [timespan="timespan"] [idletime="timespan"] [directory="string"] [cachedirectory="string"] [timeout="any"] [expireurl="string"] [port="number"]>[</cfcache>] |
| Documentation | string | 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 page. You can use cfcache for simple URLs and URLs that contain URL parameters.
Optional:
* action (string): - cache (default): server-side and client-side template caching.
- flush: refresh cached pages (template caching).
- clientcache: browser-side caching only. To cache a personalized page, use this option.
- servercache: server-side caching only. Not recommended.
- optimal: same as "cache".
- content: same as cache, but cache only the body of the tag, not the complete template (template caching).
- put: adds a key value pair to object cache (see function cachePut for more details)
- get: gets value matching given key from object cache (see function cacheGet for more details)
* key (string): key to access cache
* id (any): Id of the cached object
* throwonerror (boolean): A Boolean value specifying whether t throw an error if the
flush
action encounters an error. Otherwise the action does not generate an error if it fails. If this attribute is
true
you can handle the error in a
cfcatch
block, for example, if a specified id value is invalid
* name (string): name of return variable, valid with action="get"
* metadata (string): Name of the struct variable
* value (any): For action="set", object which needs to be stored
* cachename (string): definition of the cache used by name, when not set the "default Object Cache" defined in Lucee Administrator is used instead.
* username (string): When required for basic authentication, a valid username.
* password (string): When required for basic authentication, a valid password.
* protocol (string): Specifies the protocol used to create pages from cache. Either http:// or https://. The default
is http://.
* timespan (timespan): The interval until the item is flushed from the cache.
A decimal number of days, for example: ".25", for one-fourth day (6 hours); "1", for one day; "1.5", for one and one half days
A return value from the CreateTimeSpan function, for example, "#CreateTimeSpan(0,6,0,0)#".
The default action is to flush the item when it is idle for the time specified by the idleTime attribute, or cfcache action="flush" executes.
* idletime (timespan): Flushes the cached item if it is not accessed for the specified time span:
A decimal number of days, for example: ".25", for one-fourth day (6 hours); "1", for one day; "1.5", for one and one half days
A return value from the CreateTimeSpan function, for example, "#CreateTimeSpan(0,6,0,0)#".
* directory (string): Absolute path of cache directory.
* cachedirectory (string): Absolute path of cache directory (alias for directory).
* timeout (any): This attribute has been deprecated and is non-functional.
* expireurl (string): A URL reference. Can include wildcards, for example: "*/view.cfm?id=*". Lucee flushes, from the cache, pages that match the specified URL or pattern.
* port (number): Port number of the web server from which the URL for the cached page is requested.
In the internal call from cfcache to cfhttp, Lucee resolves each URL variable in the page; this ensures that links in the page remain functional.
|
|
|
browser | string | CCBot/2.0 (https://commoncrawl.org/faq/) |
|
datetime | Date Time (America/New_York) | {ts '2023-03-31 05:25:17'} |
|
Detail | string | valid attribute names are [action,key,id,throwonerror,name,metadata,value,cachename,username,password,protocol,timespan,idletime,directory,cachedirectory,timeout,expireurl,port] |
|
diagnostics | string | Attribute [usequerystring] is not allowed for tag [cfcache] valid attribute names are [action,key,id,throwonerror,name,metadata,value,cachename,username,password,protocol,timespan,idletime,directory,cachedirectory,timeout,expireurl,port]<br>The error occurred on line 1 in file E:\inetpub\wwwroot\domains\firsttracts.com\htdocs\layouts\community.cfm. |
|
ErrorCode | |
ExtendedInfo | |
GeneratedContent | |
HTTPReferer | |
mailto | |
message | string | Attribute [usequerystring] is not allowed for tag [cfcache] |
|
QueryString | |
RemoteAddress | |
RootCause | Catch | additional | Struct (ordered) | Pattern | string | <cfcache [action="string"] [key="string"] [id="any"] [throwonerror="boolean"] [name="string"] [metadata="string"] [value="any"] [cachename="string"] [username="string"] [password="string"] [protocol="string"] [timespan="timespan"] [idletime="timespan"] [directory="string"] [cachedirectory="string"] [timeout="any"] [expireurl="string"] [port="number"]>[</cfcache>] |
| Documentation | string | 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 page. You can use cfcache for simple URLs and URLs that contain URL parameters.
Optional:
* action (string): - cache (default): server-side and client-side template caching.
- flush: refresh cached pages (template caching).
- clientcache: browser-side caching only. To cache a personalized page, use this option.
- servercache: server-side caching only. Not recommended.
- optimal: same as "cache".
- content: same as cache, but cache only the body of the tag, not the complete template (template caching).
- put: adds a key value pair to object cache (see function cachePut for more details)
- get: gets value matching given key from object cache (see function cacheGet for more details)
* key (string): key to access cache
* id (any): Id of the cached object
* throwonerror (boolean): A Boolean value specifying whether t throw an error if the
flush
action encounters an error. Otherwise the action does not generate an error if it fails. If this attribute is
true
you can handle the error in a
cfcatch
block, for example, if a specified id value is invalid
* name (string): name of return variable, valid with action="get"
* metadata (string): Name of the struct variable
* value (any): For action="set", object which needs to be stored
* cachename (string): definition of the cache used by name, when not set the "default Object Cache" defined in Lucee Administrator is used instead.
* username (string): When required for basic authentication, a valid username.
* password (string): When required for basic authentication, a valid password.
* protocol (string): Specifies the protocol used to create pages from cache. Either http:// or https://. The default
is http://.
* timespan (timespan): The interval until the item is flushed from the cache.
A decimal number of days, for example: ".25", for one-fourth day (6 hours); "1", for one day; "1.5", for one and one half days
A return value from the CreateTimeSpan function, for example, "#CreateTimeSpan(0,6,0,0)#".
The default action is to flush the item when it is idle for the time specified by the idleTime attribute, or cfcache action="flush" executes.
* idletime (timespan): Flushes the cached item if it is not accessed for the specified time span:
A decimal number of days, for example: ".25", for one-fourth day (6 hours); "1", for one day; "1.5", for one and one half days
A return value from the CreateTimeSpan function, for example, "#CreateTimeSpan(0,6,0,0)#".
* directory (string): Absolute path of cache directory.
* cachedirectory (string): Absolute path of cache directory (alias for directory).
* timeout (any): This attribute has been deprecated and is non-functional.
* expireurl (string): A URL reference. Can include wildcards, for example: "*/view.cfm?id=*". Lucee flushes, from the cache, pages that match the specified URL or pattern.
* port (number): Port number of the web server from which the URL for the cached page is requested.
In the internal call from cfcache to cfhttp, Lucee resolves each URL variable in the page; this ensures that links in the page remain functional.
|
|
| Detail | string | valid attribute names are [action,key,id,throwonerror,name,metadata,value,cachename,username,password,protocol,timespan,idletime,directory,cachedirectory,timeout,expireurl,port] |
| ErrorCode | | Extended_Info | | ExtendedInfo | | Message | string | Attribute [usequerystring] is not allowed for tag [cfcache] |
| StackTrace | string | lucee.runtime.exp.TemplateException: Attribute [usequerystring] is not allowed for tag [cfcache]
at lucee.transformer.cfml.tag.CFMLTransformer.createTemplateException(CFMLTransformer.java:1285)
at lucee.transformer.cfml.tag.CFMLTransformer.attributeName(CFMLTransformer.java:1180)
at lucee.transformer.cfml.tag.CFMLTransformer.attribute(CFMLTransformer.java:1093)
at lucee.transformer.cfml.tag.CFMLTransformer.attributes(CFMLTransformer.java:974)
at lucee.transformer.cfml.tag.CFMLTransformer.tag(CFMLTransformer.java:688)
at lucee.transformer.cfml.tag.CFMLTransformer.body(CFMLTransformer.java:389)
at lucee.transformer.cfml.tag.CFMLTransformer.transform(CFMLTransformer.java:327)
at lucee.transformer.cfml.tag.CFMLTransformer.transform(CFMLTransformer.java:319)
at lucee.transformer.cfml.tag.CFMLTransformer.transform(CFMLTransformer.java:175)
at lucee.runtime.compiler.CFMLCompilerImpl._compile(CFMLCompilerImpl.java:104)
at lucee.runtime.compiler.CFMLCompilerImpl.compile(CFMLCompilerImpl.java:76)
at lucee.runtime.PageSourceImpl._compile(PageSourceImpl.java:446)
at lucee.runtime.PageSourceImpl.compile(PageSourceImpl.java:413)
at lucee.runtime.PageSourceImpl.loadPhysical(PageSourceImpl.java:346)
at lucee.runtime.PageSourceImpl.loadPageThrowTemplateException(PageSourceImpl.java:237)
at lucee.runtime.PageSourceImpl.loadPage(PageSourceImpl.java:1024)
at lucee.runtime.PageContextImpl._doInclude(PageContextImpl.java:1038)
at lucee.runtime.PageContextImpl._doInclude(PageContextImpl.java:935)
at lucee.runtime.listener.ClassicAppListener._onRequest(ClassicAppListener.java:65)
at lucee.runtime.listener.MixedAppListener.onRequest(MixedAppListener.java:45)
at lucee.runtime.PageContextImpl.execute(PageContextImpl.java:2475)
at lucee.runtime.PageContextImpl._execute(PageContextImpl.java:2465)
at lucee.runtime.PageContextImpl.executeCFML(PageContextImpl.java:2436)
at lucee.runtime.engine.Request.exe(Request.java:45)
at lucee.runtime.engine.CFMLEngineImpl._service(CFMLEngineImpl.java:1198)
at lucee.runtime.engine.CFMLEngineImpl.serviceCFML(CFMLEngineImpl.java:1144)
at lucee.loader.engine.CFMLEngineWrapper.serviceCFML(CFMLEngineWrapper.java:97)
at lucee.loader.servlet.CFMLServlet.service(CFMLServlet.java:51)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at sun.reflect.GeneratedMethodAccessor50.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.intergral.fusionreactor.j2ee.filterchain.WrappedFilterChain.doFilter(WrappedFilterChain.java:134)
at com.intergral.fusionreactor.j2ee.filter.FusionReactorRequestHandler.doNext(FusionReactorRequestHandler.java:772)
at com.intergral.fusionreactor.j2ee.filter.FusionReactorRequestHandler.doHttpServletRequest(FusionReactorRequestHandler.java:344)
at com.intergral.fusionreactor.j2ee.filter.FusionReactorRequestHandler.doFusionRequest(FusionReactorRequestHandler.java:207)
at com.intergral.fusionreactor.j2ee.filter.FusionReactorRequestHandler.handle(FusionReactorRequestHandler.java:809)
at com.intergral.fusionreactor.j2ee.filter.FusionReactorCoreFilter.doFilter(FusionReactorCoreFilter.java:36)
at sun.reflect.GeneratedMethodAccessor49.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.intergral.fusionreactor.j2ee.filterchain.WrappedFilterChain.doFilter(WrappedFilterChain.java:71)
at sun.reflect.GeneratedMethodAccessor48.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.intergral.fusionreactor.agent.filter.FusionReactorStaticFilter.doFilter(FusionReactorStaticFilter.java:54)
at com.intergral.fusionreactor.agent.pointcuts.NewFilterChainPointCut$1.invoke(NewFilterChainPointCut.java:42)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
at org.apache.coyote.ajp.AjpProcessor.service(AjpProcessor.java:478)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:748)
|
| TagContext | Array | 1 | Struct | codePrintHTML | string | <b>1: <cfcache key="cms_communities" action="cache" timespan="#settings.globalTimeSpan#" usequerystring="true" useCache="true" directory="e:/inetpub/wwwroot/domains/#application.website#/temp_files"></b><br>
2: <!--- Set values normally set in /booking/application.cfm ---><br>
3: <!--- Begin section to get min/max for the refine search price range slider ---><br>
|
| codePrintPlain | string | 1: <cfcache key="cms_communities" action="cache" timespan="#settings.globalTimeSpan#" usequerystring="true" useCache="true" directory="e:/inetpub/wwwroot/domains/#application.website#/temp_files">
2: <!--- Set values normally set in /booking/application.cfm --->
3: <!--- Begin section to get min/max for the refine search price range slider --->
|
| column | | id | | line | | Raw_Trace | | template | string | E:\inetpub\wwwroot\domains\firsttracts.com\htdocs\layouts\community.cfm |
| Type | |
|
| type | |
|
StackTrace | string | lucee.runtime.exp.TemplateException: Attribute [usequerystring] is not allowed for tag [cfcache]
at lucee.transformer.cfml.tag.CFMLTransformer.createTemplateException(CFMLTransformer.java:1285)
at lucee.transformer.cfml.tag.CFMLTransformer.attributeName(CFMLTransformer.java:1180)
at lucee.transformer.cfml.tag.CFMLTransformer.attribute(CFMLTransformer.java:1093)
at lucee.transformer.cfml.tag.CFMLTransformer.attributes(CFMLTransformer.java:974)
at lucee.transformer.cfml.tag.CFMLTransformer.tag(CFMLTransformer.java:688)
at lucee.transformer.cfml.tag.CFMLTransformer.body(CFMLTransformer.java:389)
at lucee.transformer.cfml.tag.CFMLTransformer.transform(CFMLTransformer.java:327)
at lucee.transformer.cfml.tag.CFMLTransformer.transform(CFMLTransformer.java:319)
at lucee.transformer.cfml.tag.CFMLTransformer.transform(CFMLTransformer.java:175)
at lucee.runtime.compiler.CFMLCompilerImpl._compile(CFMLCompilerImpl.java:104)
at lucee.runtime.compiler.CFMLCompilerImpl.compile(CFMLCompilerImpl.java:76)
at lucee.runtime.PageSourceImpl._compile(PageSourceImpl.java:446)
at lucee.runtime.PageSourceImpl.compile(PageSourceImpl.java:413)
at lucee.runtime.PageSourceImpl.loadPhysical(PageSourceImpl.java:346)
at lucee.runtime.PageSourceImpl.loadPageThrowTemplateException(PageSourceImpl.java:237)
at lucee.runtime.PageSourceImpl.loadPage(PageSourceImpl.java:1024)
at lucee.runtime.PageContextImpl._doInclude(PageContextImpl.java:1038)
at lucee.runtime.PageContextImpl._doInclude(PageContextImpl.java:935)
at lucee.runtime.listener.ClassicAppListener._onRequest(ClassicAppListener.java:65)
at lucee.runtime.listener.MixedAppListener.onRequest(MixedAppListener.java:45)
at lucee.runtime.PageContextImpl.execute(PageContextImpl.java:2475)
at lucee.runtime.PageContextImpl._execute(PageContextImpl.java:2465)
at lucee.runtime.PageContextImpl.executeCFML(PageContextImpl.java:2436)
at lucee.runtime.engine.Request.exe(Request.java:45)
at lucee.runtime.engine.CFMLEngineImpl._service(CFMLEngineImpl.java:1198)
at lucee.runtime.engine.CFMLEngineImpl.serviceCFML(CFMLEngineImpl.java:1144)
at lucee.loader.engine.CFMLEngineWrapper.serviceCFML(CFMLEngineWrapper.java:97)
at lucee.loader.servlet.CFMLServlet.service(CFMLServlet.java:51)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at sun.reflect.GeneratedMethodAccessor50.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.intergral.fusionreactor.j2ee.filterchain.WrappedFilterChain.doFilter(WrappedFilterChain.java:134)
at com.intergral.fusionreactor.j2ee.filter.FusionReactorRequestHandler.doNext(FusionReactorRequestHandler.java:772)
at com.intergral.fusionreactor.j2ee.filter.FusionReactorRequestHandler.doHttpServletRequest(FusionReactorRequestHandler.java:344)
at com.intergral.fusionreactor.j2ee.filter.FusionReactorRequestHandler.doFusionRequest(FusionReactorRequestHandler.java:207)
at com.intergral.fusionreactor.j2ee.filter.FusionReactorRequestHandler.handle(FusionReactorRequestHandler.java:809)
at com.intergral.fusionreactor.j2ee.filter.FusionReactorCoreFilter.doFilter(FusionReactorCoreFilter.java:36)
at sun.reflect.GeneratedMethodAccessor49.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.intergral.fusionreactor.j2ee.filterchain.WrappedFilterChain.doFilter(WrappedFilterChain.java:71)
at sun.reflect.GeneratedMethodAccessor48.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.intergral.fusionreactor.agent.filter.FusionReactorStaticFilter.doFilter(FusionReactorStaticFilter.java:54)
at com.intergral.fusionreactor.agent.pointcuts.NewFilterChainPointCut$1.invoke(NewFilterChainPointCut.java:42)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
at org.apache.coyote.ajp.AjpProcessor.service(AjpProcessor.java:478)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:748)
|
|
TagContext | Array | 1 | Struct | codePrintHTML | string | <b>1: <cfcache key="cms_communities" action="cache" timespan="#settings.globalTimeSpan#" usequerystring="true" useCache="true" directory="e:/inetpub/wwwroot/domains/#application.website#/temp_files"></b><br>
2: <!--- Set values normally set in /booking/application.cfm ---><br>
3: <!--- Begin section to get min/max for the refine search price range slider ---><br>
|
| codePrintPlain | string | 1: <cfcache key="cms_communities" action="cache" timespan="#settings.globalTimeSpan#" usequerystring="true" useCache="true" directory="e:/inetpub/wwwroot/domains/#application.website#/temp_files">
2: <!--- Set values normally set in /booking/application.cfm --->
3: <!--- Begin section to get min/max for the refine search price range slider --->
|
| column | | id | | line | | Raw_Trace | | template | string | E:\inetpub\wwwroot\domains\firsttracts.com\htdocs\layouts\community.cfm |
| Type | |
|
|
template | string | /layouts/community.cfm |
|
type | |