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.
Backendless.Cache.contains( key )
.then( function( result ) {
})
.catch( function( error ) {
});
where:
Argument | Description |
---|---|
key |
identifies the object to check in cache. |
Example¶
var successCallback = function( response ) {
console.log( "object exists in cache - " + response );
};
var failureCallback = function( fault ) {
console.log( "error - " + fault.message );
};
Backendless.Cache.contains( "firstorder" )
.then( successCallback )
.catch( failureCallback );
Codeless Reference¶
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:
The example below checks if the key "orderName"
is still stored in cache.
The operation returns true
, indicating that the "orderName"
key still exists in cache.