Description
Clears all indexed data for all entities or specified entities in the current application scope.
History
ColdFusion 10: Added this function
Clears all indexed data for all entities or specified entities in the current application scope.
ColdFusion 10: Added this function
ORMIndexPurge();ORMIndexPurge("entityName");ORMIndexPurge("entityName_list");
Parameter |
Description |
---|---|
entityName |
Name of the entity to be loaded. |
entityName_list |
Comma-separated list of entity names for purging. |
If you use this function without specifying entityName, all persistent entities of the application are purged.
ORMIndexPurge(); ORMIndexPurge("Employee");