article thumbnail

Front-End: Cache Strategies You Should Know

DZone

Caches are very useful software components that all engineers must know. In this article, we are going to describe what is a cache and explain specific use cases focusing on the frontend and client side. What Is a Cache?

Cache 141
article thumbnail

How to Boost Redis With Local Caching in Java

DZone

You may also like: Java-Distributed Caching in Redis. Local caching is one of the most useful tactics for improving the performance of databases such as Redis. Redis developers who want to do local caching in Java will find that Redis doesn’t support this functionality out of the box.

Cache 173
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Trending Sources

article thumbnail

Design Of A Modern Cache—Part Deux

High Scalability

The previous article described the caching algorithms used by Caffeine , in particular the eviction and concurrency models. This allows for quickly discarding new arrivals that are unlikely to be used again, guarding the main region from cache pollution.

Cache 200
article thumbnail

Using Cache in Spring Boot

DZone

Let's imagine a web application, where for each request received, it must read some configuration data of a database. Imagine also that the database is very busy or the connection is slow. A solution to that problem could be using a cache, but how do you implement it? What would happen?

Cache 100
article thumbnail

Comparing Apache Ignite In-Memory Cache Performance With Hazelcast In-Memory Cache and Java Native Hashmap

DZone

This article compares different options for the in-memory maps and their performances in order for an application to move away from traditional RDBMS tables for frequently accessed data. The migration will enable the application to quickly lookup in the map and vet the physician rather than querying the database table for vetting.

Cache 147
article thumbnail

Bloom Filters: Efficient Data Filtering With Practical Applications

DZone

Bloom, these data structures have found applications in various fields such as databases, caching, networking, and more. In this article, we will delve into the concept of Bloom filters, their functioning, explore a contemporary real-world application, and illustrate their workings with a practical example.

article thumbnail

MySQL Performance Tuning 101: Key Tips to Improve MySQL Database Performance

Percona

MySQL performance tuning offers several significant advantages for effective database management and optimization. Enhanced Database Efficiency By adjusting configuration settings, you can markedly enhance the overall efficiency of your MySQL database. Experiencing database performance issues?

Tuning 52