Whatever message this page gives is out now! Go check it out!

ORMEvictCollection

Last update:
May 18, 2026

Description

This method is used to evict all the collection or association data for the given entity name and collection name, from the secondary cache. If the primary key is specified, then, the collection or association data of the entity with the primary key is evicted.

Category

See Also

ORMEvictEntityORMEvictQueriesEvict content from secondary cache in Caching in the Developing ColdFusion Applications

Function Syntax

ormevictcollection("<entity_name>", "<collection_name>", [primarykey])

Parameters

Parameter
Description
entity name
Entity name of the persistent CFC.
collection name
Name of the collection in the component
primary key
Primary key of the collection or association data of the entity

Example

To evict all the association or collection data of collection arts belonging to the component CArtists:
<cfset ORMEvictCollection("CArtists", "arts")>

Share this page

Was this page helpful?
We're glad. Tell us how this page helped.
We're sorry. Can you tell us what didn't work for you?
Thank you for your feedback. Your response will help improve this page.

On this page