Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

dbDeleteHierCache

dbDeleteHierCache(
d_cvId
) 
=> t / nil

Description

Deletes the hierarchical cache file for the specified cellview, if the cache file exists.

Arguments

d_cvId

Database ID of the cellview that contains the hierarchical cache.

Value Returned

t

The cache file was successfully deleted.

nil

An error occurred or the cache file does not exist.

Example

Creates a hierarchical cache file and then deletes it.

cv = dbOpenCellViewByType("test" "hierTop" "layout" "maskLayout" "a")
dbSetHierCacheUsage("saveAndLoad" cv)
dbSave(cv)
dbHasValidHierCache(cv)
=> t
dbDeleteHierCache(cv)
=> t
dbHasValidHierCache(cv)
=> nil

Related Topics

dbGetHierCacheUsage

dbHasValidHierCache

dbSetHierCacheUsage

Return to top
 ⠀
X