Blog
Introducing Backendless Pro Community Edition: Free Single-Server Deployment
We’re excited to announce that Backendless is now even more accessible with the launch of the Community Edition: a free version of the Backendless platform for deployment on a single physical server. This change makes Backendless more accessible than ever, allowing established users who want to lower their overall cost of ownership to deploy quickly...

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).