Skip to main content

Use Momento Cache to speed up your database

Using a cache alongside your database can significantly improve the performance and availability of your application. By storing frequently accessed data in a cache, you can reduce the load on the database, leading to faster response times, higher availability, and lower costs.

There are multiple ways to use a cache in conjunction with a database. The 2 main patterns are read-aside and write-through caching. In this guide, we will explore these patterns and how to implement them using Momento Cache.

info

With any caching pattern, it is important to tune the TTL (Time to Live) for cached items. The TTL determines how long the data will be stored in the cache before it is evicted. Setting an appropriate TTL can help you ensure the data in the cache is up-to-date. Picking a TTL that is too short can result in frequent cache misses, while a TTL that is too long can result in stale data being served. Determining the appropriate TTL should be is dependent on your application, data being cached, and how that data is used.

Read-aside caching

Read-aside caching is a pattern where the application first checks the cache for the data it needs. If the data is not found in the cache, the application fetches the data from the database and stores it in the cache for future use. This pattern is useful for read-heavy applications where the same data is accessed frequently.

Advantages of read-aside caching

  • Faster reads: Assuming a high cache hit rate, most requests won't need to hit the database, resulting in faster reads.
  • Higher availability: Read-aside caching reduces the load on the database, which can help improve the availability of the application.

Diagram of read-aside caching with Momento

Read-aside caching with Momento

Momento makes it easy to implement read-aside caching in your application. You can use the get API to fetch data from the cache and the set API to save data in the cache.

const cachedValue = (await cacheClient.get('test-cache', 'test-key')).value();
if (cachedValue !== undefined) {
console.log(`Cache hit for key 'test-key': ${cachedValue}`);
return cachedValue;
} else {
console.log("Key 'test-key' was not found in cache 'test-cache', checking in database...");
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
const actualValue = database.get('test-key')!;
await cacheClient.set('test-cache', 'test-key', actualValue);
return actualValue;
}

Disadvantages of read-aside caching

  • Cache misses: If data is not properly set in the cache, then high cache misses would result in an extra api call, which could slow down the application.
  • Stale data: If the data in the database is updated frequently, the cache may contain stale data. This can be mitigated by setting an appropriate TTL for the cached items.

Write-through caching

Write-through caching is a pattern where the application writes data to the cache and the database at the same time. This pattern is useful for write-heavy applications where the same data is written frequently. It is often used in conjunction with read-aside caching. Since the data is written to the cache and the database at the same time, the cache is always up-to-date with the database, resulting in a higher cache hit rate, faster reads, and lower latency.

Advantages of write-through caching

  • Higher cache hit rates: Since the cache is kept up to date with the database, most requests to the cache should result in a cache hit.
  • Lower latency: Higher cache hit rates means less calls to the database, resulting in lower latency.

Diagram of write-through caching with Momento

Write-through caching with Momento

Here is an example of how you can implement write-through caching with Momento:

const value = 'test-value';
database.set('test-key', value);
await cacheClient.set('test-cache', 'test-key', value);
return value;

Disadvantages of write-through caching

  • Infrequently accessed data: If data is written to the cache that is infrequently accessed, it can result in unnecessary resources needed for the cache, and increased costs. This can be mitigated by using a heuristic to determine which data should be cached.
  • Performance overhead: Since every write operation needs to be performed twice (once in the cache and once in the persistent storage), there is additional overhead compared to other caching patterns. This can lead to increased latency and reduced throughput for write operations, especially if the underlying storage is relatively slow or experiences high load.
  • Potential for consistency issues: While write-through caching aims to maintain consistency between the cache and persistent storage, there is still a possibility of consistency issues arising due to factors such as network failures, storage system failures, or race conditions. Proper error handling and retry mechanisms need to be implemented to mitigate these risks.

Learn more

To learn more about Momento or to get a quick-start on your project, check out some additional resources below.