Cache Dart Reference Documentation
CkCache
Current Version: 11.6.1
Chilkat.Cache
Store and retrieve cached items by unique key, without the application
needing to manage the underlying cache filenames directly.
Cache strings, byte data, files, or Chilkat buffer objects depending on
the data form used by the application.
Associate cached items with expiration times, update expiration metadata,
and check whether cached content is still usable.
Store and retrieve ETag values for workflows that need HTTP-style cache
validation or conditional re-fetch logic.
Choose the cache root directory and use an optional multi-level directory
structure to avoid too many files in a single folder.
Delete a single cached item, remove expired items, remove older items, or
clear the entire cache when needed.
For an extended overview, see
Cache Class Overview.
Store, retrieve, expire, and clean up cached text or binary data on disk.
Chilkat.Cache is a disk-based cache class for storing and
retrieving text or binary items by unique key. It provides configurable cache
roots, optional multi-level directory layout, expiration metadata, ETag
metadata, cache lookup, fetch-status properties, expiration updates, and
cleanup methods for deleting individual items, expired items, older items, or
the entire cache.
Key-based storage
Text and binary data
Expiration control
ETag metadata
Configurable layout
Cleanup operations
Object Creation
// pubspec.yaml:
// dependencies:
// chilkat: ^11.6.1
import 'package:chilkat/chilkat.dart';
// Once per process, before any other Chilkat call:
Chilkat.unlockBundle('Anything for 30-day trial'); // shorthand for CkGlobal().unlockBundle(..)
final cache = CkCache();
// ... the native object is released when `cache` is garbage collected, or now with cache.dispose().Creates the underlying native Chilkat object. Use a CkCache only from the isolate that created it: Chilkat objects cannot be sent between isolates. Every call is synchronous; in a Flutter app, run long operations (network, large files) inside Isolate.run, creating the Chilkat objects inside the isolate.
Releases the native object immediately instead of waiting for garbage collection (useful for a large CkBinData or an open socket). Calling it more than once is harmless; any other use of the object afterwards throws a StateError. isDisposed tells whether it has been called.
Errors
A method that can fail throws a ChilkatException: a method whose only outcome is success or failure returns void and throws on failure; a method producing a String or an object returns it and throws where Chilkat would have returned null. The exception carries the object's LastErrorText at the time of the failure (lastErrorText), the class and method names (className, methodName) and a one-line message. Properties never throw, and methods that answer a question (has..., is..., ...) return a plain bool.
try {
cache.someMethod(...);
} on ChilkatException catch (e) {
print(e); // CkCache.someMethod failed: <reason>
print(e.lastErrorText); // the full Chilkat log of the failed call
}
Properties
DebugLogFilePath
String get debugLogFilePath
set debugLogFilePath(String value)
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
String get lastErrorHtml
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
String get lastErrorText
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
String get lastErrorXml
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
String get lastEtagFetched
Returns the ETag metadata associated with the most recently fetched cache item. An empty string means that the fetched item has no stored ETag.
FetchBd, FetchSb, or FetchText.If-None-Match.LastExpirationFetchedStr
String get lastExpirationFetchedStr
Returns the expiration date and time stored for the most recently fetched cache item, formatted as an RFC 822-style Internet date. An empty string represents an item with no expiration date.
LastHitExpired after the fetch to determine whether the returned entry is stale.LastHitExpired
bool get lastHitExpired
Returns true when the expiration time of the most recently fetched item is earlier than the current system date and time; otherwise returns false.
DeleteAllExpired or DeleteFromCache.LastKeyFetched
String get lastKeyFetched
Returns the application-defined key associated with the most recently fetched cache item.
LastMethodSuccess
bool get lastMethodSuccess
set lastMethodSuccess(bool value)
Indicates the success or failure of the most recent method call: true means success, false 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. Note: This property does not apply to methods that return integer values or to boolean-returning methods where the boolean does not indicate success or failure.
Level
int get level
set level(int value)
Gets or sets the number of directory levels used beneath each cache root. Valid values are 0, 1, and 2.
| Value | Directory layout |
|---|---|
0 | All cache files are stored directly in the cache root. |
1 | Files are distributed among 256 first-level directories named 0 through 255. |
2 | Files are distributed through two levels of 256 directories, allowing as many as 65,536 leaf directories per root. |
NumRoots
int get numRoots
Returns the number of cache-root directories that have been registered by calling AddRoot.
VerboseLogging
bool get verboseLogging
set verboseLogging(bool value)
If set to true, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is false. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.
Version
String get version
Methods
AddRoot
Adds path as a root directory for the disk cache. Call this method once for each root that should participate in the cache.
For example, a cache distributed across D:\cacheRoot, E:\cacheRoot, and F:\cacheRoot is configured by calling this method three times.
Level setting before accessing a cache created by an earlier process or application run.DeleteAll
Deletes every cache item from all configured roots and returns the number of cache files removed. Multi-level subdirectories are retained.
DeleteAllExpired
Deletes all cache items whose stored expiration time is earlier than the current system time and returns the number of files removed.
DeleteFromCache
Deletes the cache item identified by key.
| Return value | Meaning |
|---|---|
true | The item was deleted, or no item existed for the key. |
false | The item exists but could not be deleted, for example because of a filesystem permission or sharing error. |
Returns normally on success; throws a ChilkatException on failure.
DeleteOlderDt
Deletes cache items older than the cutoff date and time supplied in dt.
Returns the number of cache files deleted, or -1 if an error occurs.
DeleteAllExpired when the decision should be based specifically on each item's expiration metadata.DeleteOlderStr
Deletes cache items older than the cutoff date and time supplied in dateTimeStr as an RFC 822-style Internet date string.
Returns the number of cache files deleted, or -1 if an error occurs.
Mon, 03 Aug 2026 12:00:00 GMT. Use DeleteOlderDt when the cutoff is already available as a CkDateTime.FetchBd
Retrieves the binary item identified by key and loads its bytes into the BinData object supplied in bd.
The key is application-defined, may contain any characters, and must uniquely identify the intended item.
true. A failed lookup or filesystem error returns false.LastHitExpired immediately afterward when stale data must not be used.Returns normally on success; throws a ChilkatException on failure.
FetchSb
Retrieves the text item identified by key and loads its content into the StringBuilder supplied in sb.
The key is application-defined, may contain any characters, and must uniquely identify the intended item.
true. A failed lookup or filesystem error returns false.LastHitExpired immediately afterward when stale data must not be used.Returns normally on success; throws a ChilkatException on failure.
FetchText
Retrieves the text item identified by key and returns its string content.
The key is application-defined, may contain any characters, and must uniquely identify the intended item.
LastHitExpired immediately afterward when the application requires only fresh data.Throws a ChilkatException on failure (where the description says null is returned, the Dart method throws instead).
GetEtag
Returns the ETag metadata stored with the cache item identified by key.
Throws a ChilkatException on failure (where the description says null is returned, the Dart method throws instead).
GetExpirationStr
Returns the expiration date and time stored for the item identified by url, formatted as an RFC 822-style Internet date string.
url url for historical reasons. It is the cache key and does not need to be a URL.Throws a ChilkatException on failure (where the description says null is returned, the Dart method throws instead).
GetFilename
Returns the absolute filesystem path of the cache file associated with key.
Cache API rather than modifying cache files directly.Throws a ChilkatException on failure (where the description says null is returned, the Dart method throws instead).
GetRoot
Returns the directory path of the cache root at zero-based index. Valid indexes range from 0 through NumRoots - 1.
Throws a ChilkatException on failure (where the description says null is returned, the Dart method throws instead).
IsCached
Returns true if an item exists for key, or false if the key is not present.
LastHitExpired, or read its expiration metadata, when freshness matters.SaveBd
Stores the contents of bd as binary cache data under key. If the key already exists, its data and metadata are replaced.
| Argument | Purpose |
|---|---|
key | The unique application-defined cache key. |
expiration | Expiration as an RFC 822-style Internet date string. Pass an empty string for no expiration. |
etag | Optional ETag or application metadata. Pass an empty string when unused. |
bd | The BinData containing the bytes to save. |
Returns normally on success; throws a ChilkatException on failure.
SaveTextDt
Stores itemTextData as a text cache item under key, with the expiration date and time supplied in expireDateTime. If the key already exists, its data and metadata are replaced.
eTag is optional ETag or application metadata and may be an empty string. The key may contain any characters and may be any length, but it must uniquely identify the item.
LastHitExpired to detect staleness and a deletion method to remove it.Returns normally on success; throws a ChilkatException on failure.
SaveTextNoExpire
Stores itemTextData as a non-expiring text cache item under key. If the key already exists, its data and metadata are replaced.
eTag is optional ETag or application metadata and may be an empty string.
Returns normally on success; throws a ChilkatException on failure.
SaveTextStr
Stores itemTextData as a text cache item under key, with expireDateTime providing the expiration time as an RFC 822-style Internet date string. If the key already exists, its data and metadata are replaced.
eTag is optional ETag or application metadata and may be empty.
SaveTextDt when the expiration is available as a CkDateTime, or SaveTextNoExpire for an entry without expiration.Returns normally on success; throws a ChilkatException on failure.
UpdateExpirationDt
Replaces the expiration date and time of the cache item identified by key with the CkDateTime value supplied in expireDateTime. The cached data and ETag are unchanged.
Returns normally on success; throws a ChilkatException on failure.
UpdateExpirationStr
Replaces the expiration date and time of the cache item identified by key with the RFC 822-style Internet date string supplied in expireDateTime. The cached data and ETag are unchanged.
key url; it is the cache key and does not need to be a URL. Use UpdateExpirationDt for a CkDateTime value.Returns normally on success; throws a ChilkatException on failure.