ColdFusion 9.0 Resources |
ORMEvictQueriesDescriptionThis method is used to evict the data of all the queries from the default query cache. If cache name is specified, then, the data of all the queries belonging to the cache region with the given cache name are evicted. CategorySee AlsoORMEvictEntity, ORMEvictCollection, Evict content from secondary cache in Developing ColdFusion Applications Function SyntaxORMEvictQueries([cachename]) Parameterscachename: Name of the cache region that needs to be evicted. ExampleEvicts the data of all the queries from the default query cache. <cfset ORMEvictQueries()> Evicts the data of all the queries from the cache region with the name availableArtsCache. <cfset ORMEvictQueries("availableArtsCache")> |