Cache Tcl Reference Documentation
Cache
Current Version: 10.1.2
Object Creation
set myCache [new CkCache]
Properties
DebugLogFilePath
# ckStr is a CkString
CkCache_get_DebugLogFilePath $myCache $ckStr
set strVal [CkCache_get_debugLogFilePath $myCache]
CkCache_put_DebugLogFilePath $myCache $strVal
If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.
Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.
Possible causes of hangs include:
- A timeout property set to 0, indicating an infinite timeout.
- A hang occurring within an event callback in the application code.
- An internal bug in the Chilkat code causing the hang.
LastErrorHtml
# ckStr is a CkString
CkCache_get_LastErrorHtml $myCache $ckStr
set strVal [CkCache_get_lastErrorHtml $myCache]
Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
topLastErrorText
# ckStr is a CkString
CkCache_get_LastErrorText $myCache $ckStr
set strVal [CkCache_get_lastErrorText $myCache]
Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
LastErrorXml
# ckStr is a CkString
CkCache_get_LastErrorXml $myCache $ckStr
set strVal [CkCache_get_lastErrorXml $myCache]
Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
topLastEtagFetched
# ckStr is a CkString
CkCache_get_LastEtagFetched $myCache $ckStr
set strVal [CkCache_get_lastEtagFetched $myCache]
The ETag of the last item fetched from cache.
topLastExpirationFetchedStr
# ckStr is a CkString
CkCache_get_LastExpirationFetchedStr $myCache $ckStr
set strVal [CkCache_get_lastExpirationFetchedStr $myCache]
Expiration date/time of the last item fetched from cache in RFC822 string format.
topLastHitExpired
set boolVal [CkCache_get_LastHitExpired $myCache]
1 if the LastExpirationFetched is before the current date/time. Otherwise 0.
topLastKeyFetched
# ckStr is a CkString
CkCache_get_LastKeyFetched $myCache $ckStr
set strVal [CkCache_get_lastKeyFetched $myCache]
The key of the last item fetched from cache. (For web pages, the key is typically the canonicalized URL. Otherwise, the key is a unique identifer used to access the cached item.)
topLastMethodSuccess
set boolVal [CkCache_get_LastMethodSuccess $myCache]
CkCache_put_LastMethodSuccess $myCache $boolVal
Indicates the success or failure of the most recent method call: 1 means success, 0 means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages.
topLevel
set intVal [CkCache_get_Level $myCache]
CkCache_put_Level $myCache $intVal
The number of directory levels in the cache. Possible values are:
0: All cache files are in a single directory (the cache root).top
1: Cache files are located in 256 sub-directories numbered 0 .. 255 directly under the cache root.
2: There are two levels of sub-directories under the cache root. The 1st level has 256 sub-directories numbered 0 .. 255 directly under the cache root. The 2nd level allows for up to 256 sub-directories (0..255) under each level-1 directory. Cache files are stored in the leaf directories.
NumRoots
set intVal [CkCache_get_NumRoots $myCache]
The number of root directories composing the cache. A typical multi-root cache would place each root on a separate hard drive.
topUtf8
set boolVal [CkCache_get_Utf8 $myCache]
CkCache_put_Utf8 $myCache $boolVal
When set to 1, all "const char *" arguments are interpreted as utf-8 strings. If set to 0 (the default), then "const char *" arguments are interpreted as ANSI strings. Also, when set to 1, and Chilkat method returning a "const char *" is returning the utf-8 representation. If set to 0, all "const char *" return values are ANSI strings.
topVerboseLogging
set boolVal [CkCache_get_VerboseLogging $myCache]
CkCache_put_VerboseLogging $myCache $boolVal
If set to 1, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is 0. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.
topVersion
# ckStr is a CkString
CkCache_get_Version $myCache $ckStr
set strVal [CkCache_get_version $myCache]
Methods
AddRoot
CkCache_AddRoot $path
Must be called once for each cache root. For example, if the cache is spread across D:\cacheRoot, E:\cacheRoot, and F:\cacheRoot, an application would setup the cache object by calling AddRoot three times -- once with "D:\cacheRoot", once with "E:\cacheRoot", and once with "F:\cacheRoot".
DeleteAll
Deletes all items in the cache. This method completely clears the cache. All files in the cache are deleted. (If the cache is multi-level, existing sub-directories are not deleted.)
Returns the number of items (i.e. cache files) deleted.
topDeleteAllExpired
Deletes all expired items from the cache.
Returns the number of items (i.e. cache files) deleted.
topDeleteFromCache
set status [CkCache_DeleteFromCache $key]
Deletes a single item from the disk cache. Returns 0 if the item exists in cache but could not be deleted. Otherwise returns 1.
Returns 1 for success, 0 for failure.
topDeleteOlderDt
The same as DeleteOlder, except the dateTime is passed as a CkDateTime.
topDeleteOlderStr
set retInt [CkCache_DeleteOlderStr $dateTimeStr]
The same as DeleteOlder, except the dateTimeStr is passed as a date/time in RFC822 format.
topFetchBd
# bd is a CkBinData
set status [CkCache_FetchBd $key $bd]
Fetches an item from cache and returns in bd.
The key may be any length and may include any characters. It should uniquely identify the cached item. (No two items in the cache should have the same key.)
Returns 1 for success, 0 for failure.
topFetchFromCache
# outBytes is a CkByteData (output)
set status [CkCache_FetchFromCache $key $outData]
Fetches an item from cache.
The key may be any length and may include any characters. It should uniquely identify the cached item. (No two items in the cache should have the same key.)
Returns 1 for success, 0 for failure.
FetchSb
# sb is a CkStringBuilder
set status [CkCache_FetchSb $key $sb]
Fetches a text item from the cache and returns in sb.
The key may be any length and may include any characters. It should uniquely identify the cached item. (No two items in the cache should have the same key.)
Returns 1 for success, 0 for failure.
topFetchText
# outStr is a CkString (output)
set status [CkCache_FetchText $key $outStr]
set retStr [CkCache_fetchText $myCache $key]
Fetches a text item from the cache and returns it's text content.
The key may be any length and may include any characters. It should uniquely identify the cached item. (No two items in the cache should have the same key.)
Returns 1 for success, 0 for failure.
GetEtag
# outStr is a CkString (output)
set status [CkCache_GetEtag $key $outStr]
set retStr [CkCache_getEtag $myCache $key]
GetExpirationDt
Returns the expiration date/time for an item in the cache as a CkDateTime object.
Returns NULL on failure
topGetExpirationStr
# outStr is a CkString (output)
set status [CkCache_GetExpirationStr $url $outStr]
set retStr [CkCache_getExpirationStr $myCache $url]
Returns the expiration date/time for an item in the cache in RFC822 string format.
Returns 1 for success, 0 for failure.
topGetFilename
# outStr is a CkString (output)
set status [CkCache_GetFilename $key $outStr]
set retStr [CkCache_getFilename $myCache $key]
Returns the absolute file path of the cache file associated with the key.
Returns 1 for success, 0 for failure.
topGetRoot
# outStr is a CkString (output)
set status [CkCache_GetRoot $index $outStr]
set retStr [CkCache_getRoot $myCache $index]
Returns the directory path of the Nth cache root. (Indexing begins at 0.)
Returns 1 for success, 0 for failure.
topIsCached
set retBool [CkCache_IsCached $key]
Returns 1 if the item is found in the cache, otherwise returns 0.
topSaveTextDt
# expireDateTime is a CkDateTime
# eTag is a string
# itemTextData is a string
set status [CkCache_SaveTextDt $key $expireDateTime $eTag $itemTextData]
The same as SaveText, except the expire date/time is passed as a CkDateTime object.
Returns 1 for success, 0 for failure.
topSaveTextNoExpire
# eTag is a string
# itemTextData is a string
set status [CkCache_SaveTextNoExpire $key $eTag $itemTextData]
Inserts or replaces an text item in the cache with no expiration date/time. The eTag is optional and may be set to a zero-length string. Applications may use it as a place to save additional information about the cached item.
Returns 1 for success, 0 for failure.
SaveTextStr
# expireDateTime is a string
# eTag is a string
# itemTextData is a string
set status [CkCache_SaveTextStr $key $expireDateTime $eTag $itemTextData]
The same as SaveText, except the expire date/time is passed as a string in RFC822 format.
Returns 1 for success, 0 for failure.
topSaveToCacheDt
# expireDateTime is a CkDateTime
# eTag is a string
# itemData is a CkByteData
set status [CkCache_SaveToCacheDt $key $expireDateTime $eTag $itemData]
The same as SaveToCache, except the expire date/time is passed as a CkDateTime object.
Returns 1 for success, 0 for failure.
topSaveToCacheNoExpire
# eTag is a string
# itemData is a CkByteData
set status [CkCache_SaveToCacheNoExpire $key $eTag $itemData]
Inserts or replaces an item in the cache. The cached item will have no expiration. The eTag is optional and may be set to a zero-length string. Applications may use it as a place to save additional information about the cached item.
Returns 1 for success, 0 for failure.
SaveToCacheStr
# expireDateTime is a string
# eTag is a string
# itemData is a CkByteData
set status [CkCache_SaveToCacheStr $key $expireDateTime $eTag $itemData]
The same as SaveToCache, except the expire date/time is passed in RFC822 string format.
Returns 1 for success, 0 for failure.
topUpdateExpirationDt
# expireDateTime is a CkDateTime
set status [CkCache_UpdateExpirationDt $key $expireDateTime]
The same as UpdateExpiration, except the expireDateTime is passed as a CkDateTime.
Returns 1 for success, 0 for failure.
topUpdateExpirationStr
# expireDateTime is a string
set status [CkCache_UpdateExpirationStr $key $expireDateTime]
The same as UpdateExpiration, except the expireDateTime is passed in RFC822 string format.
Returns 1 for success, 0 for failure.
top