Skip to content

Checking if key exists in cache

This API request checks if an object exists in cache. If object is present in cache, the method returns true, otherwise - false.

Method:

GET

Endpoint URL

The xxxx.backendless.app is a subdomain assigned to your application. For more information see the Client-side Setup section of this documentation.

https://xxxx.backendless.app/api/cache/<key>/check

where:

Argument                Description
<key> -identifies the object to check if exists in cache.

Request headers

user-token: optional value obtained as a result of the login operation.

where:

Argument                Description
user-token Optional header. Contains a value returned by Backendless in a preceding user Login API call. If user-token is set in the request, the currently logged in user will be assigned to the ownerId property of the user object which is being saved.  Additionally, the operation will be executed with the security policy associated currently logged in user. This means all permissions associated with the user and the roles assigned to the user will be enforced by Backendless.

Request body

N/A

Example

Make sure to replace xxxx in the domain name in the sample request below to the one assigned to your application.

curl -X GET \  
[`https://xxxx.backendless.app/api/cache/myorder/check`](https://xxxx.backendless.app/api/cache/myorder/check)

Codeless Reference

caching_codeless_check_if_key_exists_1

where:

Argument                Description
key name Key assigned to the object to identify it in cache. The key is used to check if the cache still contains the object.

Returns true if the key still exists in cache, otherwise returns false.

Consider the following key-value pair stored in cache:

caching_codeless_putting_data_into_cache_3

The example below checks if the key "orderName" is still stored in cache.

caching_codeless_check_if_key_exists_2

The operation returns true, indicating that the "orderName" key still exists in cache.

caching_codeless_check_if_key_exists_3