Go to: Synopsis. Return value. Keywords. Flags. MEL examples.

Synopsis

diskCache [-append] [-cacheType string] [-close string] [-closeAll] [-delete string] [-deleteAll] [-empty string] [-emptyAll] [-enabledCachesOnly] [-endTime time] [-frameRangeType string] [-overSample] [-samplingRate int] [-startTime time] [-tempDir]

diskCache is NOT undoable, queryable, and NOT editable.

Command to create, clear, or close disk cache(s).

Return value

None

In query mode, return type is based on queried flag.

Keywords

disk, cache

Flags

append, cacheType, close, closeAll, delete, deleteAll, empty, emptyAll, enabledCachesOnly, endTime, frameRangeType, overSample, samplingRate, startTime, tempDir
Long name (short name) Argument types Properties
-frameRangeType(-frt) string createquery
Specifies the type of frame range to use, namely "Render Globals", "Time Slider", and "Start/End". In the case of "Time Slider", startFrame and endFrame need to be specified. (This flag is now obsolete. Please use the -startTime and -endTime flags to specify the frame range explicitly.)
-startTime(-st) time createquery
Specifies the start frame of the cache range.
-endTime(-et) time createquery
Specifies the end frame of the cache range.
-samplingRate(-sr) int createquery
Specifies how frequently to sample relative to each frame. When over-sampling (-overSample has been specified), this parameter determines how many times per frame the runup will be evaluated. When under-sampling (the default, when -overSample has not been specified), the runup will evaluate only once per sr frames, where sr is the value specified to this flag.
-enabledCachesOnly(-eco) createquery
When present, this flag restricts the -ea/emptyAll, so that only "enabled" disk caches (i.e., disk cache nodes with the ".enable" attribute set to "true") are affected.
-emptyAll(-ea) createquery
Clear the content of all disk caches. If -eco/enabledCachesOnly is "true" only enabled disk cache nodes are affected.
-empty(-e) string createquery
Clear the content of the disk cache with the given disk cache node name. If -eco/enabledCachesOnly is "true" only enabled disk cache nodes are affected.
-deleteAll(-da) createquery
Delete all disk cache files. If -eco/enabledCachesOnly is "true" only enabled disk cache nodes are affected.
-delete(-d) string createquery
Delete the cache given the disk cache node name. If -eco/enabledCachesOnly is "true" only enabled disk cache nodes are affected.
-closeAll(-ca) createquery
Close all disk cache files. If -eco/enabledCachesOnly is "true" only enabled disk cache nodes are affected.
-close(-c) string createquery
Close the cache given the disk cache node name. If -eco/enabledCachesOnly is "true" only enabled disk cache nodes are affected.
-append(-a) createquery
Append at the end and not to flush the existing cache
-overSample(-os) createquery
Over sample if true. Otherwise, under sample.
-cacheType(-ct) string createquery
Specifies the type of cache to overwrite. "mcfp" for particle playback cache, "mcfi" for particle initial cache. "mcj" for jiggle cache. This option is only activated during the cache creation.
-tempDir(-tmp) createquery
Query-only flag for the location of temporary diskCache files.

Flag can appear in Create mode of command Flag can appear in Edit mode of command
Flag can appear in Query mode of command Flag can be used more than once in a command.

MEL examples

// Explicitly specify the settings for disk cache
// creation: the start time to 3 and the end time to 10.
diskCache -startTime 3 -endTime 10;
// Specify to use over sampling and with sampling
// rate set to 2, sampling twice for each frame.
diskCache -overSample -samplingRate 2;
// Delete all caches
diskCache -deleteAll;
// Clear the cache content for diskCache3's cache.
diskCache -empty "diskCache3";
// Close all the disk caches.
diskCache -emptyAll;