Retrieves information about CAS disk cache usage, the CAS server directory name, and the file system path for that cache.
| Parameter | Description |
|---|---|
| format | When set to False, return numeric values instead of human-readable formatted values. Alias: formatted Default: TRUE |
This action retrieves existing CAS information and does not require explicit data creation in the examples provided.
| 1 | /* No |
| 2 | data creation code provided in the documentation for this action. */ |
This example shows how to retrieve and display CAS disk cache information.
| 1 | PROC CAS; |
| 2 | BUILTINS.getCacheInfo; |
| 3 | RUN; |
| 4 |
This example shows how to retrieve CAS disk cache information in numeric, unformatted values.
| 1 | PROC CAS; |
| 2 | BUILTINS.getCacheInfo / FORMAT=FALSE; |
| 3 | RUN; |
| 4 |