Show cache data

Not applicable

Hy guys!

Is it possibile to see all of the data in the cache policy? I mean, I need an GUI or API, wich give me all of the data and all of the technical information (for instance: expiration...) from storage used by cache policy.

Thanks!

Viktor

0 1 178
1 REPLY 1

It is not possible to access all of the cache data. You can use the management API to see the cache details, but not the keys or content.

curl -n https://api.enterprise.apigee.com/v1/o/ORG/e/ENV/cache/CACHE_NAME


{
    "description": "CACHE_NAME description",
    "diskSizeInMB": 0,
    "distributed": true,
    "expirySettings": {
        "timeoutInSec": {
            "value": "3600"
        },
        "valuesNull": false
    },
    "inMemorySizeInKB": 0,
    "maxElementsInMemory": 0,
    "maxElementsOnDisk": 0,
    "name": "CACHE_NAME",
    "overflowToDisk": false,
    "persistent": false
}

You need the original keys.