Blog
Backendless Continues Momentum in Fall 2023 with 16 G2 Badges
Backendless earns 16 badges in the Fall 2023 G2 reports, including High Performer across API Management, mBaaS, API Design, and RAD, showcasing the platform's excellent developer support, ease of use, and global customer satisfaction.

How to Check If an Object Exists in Server-Side Cache

Previously, we wrote about how to store and retrieve objects to and from server-side in-memory cache. Quite often when working with your cache, it is necessary to check if an object already exists in cache. Backendless provides an API for that function. The code below checks if an object exists in cache, and if not,…

How to Place and Retrieve Objects From the Server-Side Cache

Backendless provides a very powerful and easy-to-use API to work with your server-side cache. The API is multi-platform, which means clients written in different languages can exchange data using the centralized server-side cache storage. The caching API can accept any arbitrary object, a primitive value, or an array of objects/primitive values. Additionally, the caching system…

How to Set Up Cross-Platform, Multi-Type Atomic Counters

There are plenty of use cases when mBaaS-powered applications must use a centralized mechanism for incrementing or decrementing a value. There are several approaches for maintaining a counter – some apps use a database, others keep it in the server-side business logic (Cloud Code).