溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

緩存技術(shù)在高并發(fā)Spring Boot+PGSQL中的實(shí)踐

發(fā)布時(shí)間:2024-11-09 10:29:43 來(lái)源:億速云 閱讀:78 作者:小樊 欄目:編程語(yǔ)言

在高并發(fā)的Spring Boot + PGSQL環(huán)境中,緩存技術(shù)可以顯著提高系統(tǒng)性能,減少數(shù)據(jù)庫(kù)負(fù)載。以下是一些實(shí)踐建議:

1. 使用Spring Cache抽象

Spring提供了強(qiáng)大的緩存抽象,可以通過(guò)注解或配置文件來(lái)啟用緩存。

啟用緩存

在Spring Boot主類(lèi)上添加@EnableCaching注解:

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;

@SpringBootApplication
@EnableCaching
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}

使用注解

使用@Cacheable注解來(lái)緩存方法的結(jié)果:

import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;

@Service
public class UserService {

    @Cacheable(value = "users", key = "#id")
    public User getUserById(Long id) {
        // 從數(shù)據(jù)庫(kù)中獲取用戶(hù)信息
        return userRepository.findById(id).orElse(null);
    }
}

2. 配置緩存管理器

Spring Boot支持多種緩存管理器,如EhCache、Redis等。這里以EhCache為例:

添加依賴(lài)

pom.xml中添加EhCache依賴(lài):

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<dependency>
    <groupId>net.sf.ehcache</groupId>
    <artifactId>ehcache</artifactId>
</dependency>

配置緩存管理器

application.yml中配置EhCache:

spring:
  cache:
    type: ehcache

ehcache:
  cache-manager:
    config: classpath:ehcache.xml

創(chuàng)建ehcache.xml文件:

<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="http://www.ehcache.org/ehcache.xsd"
         updateCheck="false">

    <diskStore path="java.io.tmpdir/ehcache"/>

    <defaultCache
            maxElementsInMemory="100"
            eternal="false"
            timeToIdleSeconds="120"
            timeToLiveSeconds="120"
            overflowToDisk="true"
            maxElementsOnDisk="10000000"
            diskPersistent="true"
            diskExpiryThreadIntervalSeconds="120"
            memoryStoreEvictionPolicy="LRU"/>

    <cache name="users"
           maxElementsInMemory="1000"
           eternal="false"
           timeToIdleSeconds="300"
           timeToLiveSeconds="600"
           overflowToDisk="true"
           diskPersistent="true"
           diskExpiryThreadIntervalSeconds="120"
           memoryStoreEvictionPolicy="LRU"/>
</ehcache>

3. 使用Redis作為緩存

Redis是一個(gè)高性能的內(nèi)存數(shù)據(jù)庫(kù),適合在高并發(fā)環(huán)境中使用。

添加依賴(lài)

pom.xml中添加Redis依賴(lài):

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

配置Redis

application.yml中配置Redis:

spring:
  redis:
    host: localhost
    port: 6379

配置緩存管理器

在配置類(lèi)中配置Redis緩存管理器:

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.cache.RedisCacheConfiguration;
import org.springframework.data.redis.cache.RedisCacheManager;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;

@Configuration
public class RedisConfig {

    @Bean
    public RedisCacheManager cacheManager(RedisConnectionFactory connectionFactory) {
        RedisCacheConfiguration config = RedisCacheConfiguration.defaultCacheConfig()
                .entryTtl(Duration.ofSeconds(60)); // 設(shè)置緩存過(guò)期時(shí)間

        return RedisCacheManager.builder(connectionFactory)
                .cacheDefaults(config)
                .withInitialCacheConfigurations(getCacheConfigurations())
                .build();
    }

    private Map<String, RedisCacheConfiguration> getCacheConfigurations() {
        Map<String, RedisCacheConfiguration> cacheConfigurations = new HashMap<>();
        cacheConfigurations.put("users", RedisCacheConfiguration.defaultCacheConfig().entryTtl(Duration.ofSeconds(300)));
        return cacheConfigurations;
    }

    @Bean
    public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory connectionFactory) {
        RedisTemplate<String, Object> template = new RedisTemplate<>();
        template.setConnectionFactory(connectionFactory);
        return template;
    }
}

4. 使用Guava Cache

Guava Cache是一個(gè)高性能的緩存庫(kù),可以作為Spring Cache的替代方案。

添加依賴(lài)

pom.xml中添加Guava Cache依賴(lài):

<dependency>
    <groupId>com.google.guava</groupId>
    <artifactId>guava</artifactId>
    <version>31.0.1-jre</version>
</dependency>

配置Guava Cache

在配置類(lèi)中配置Guava Cache:

import com.google.common.cache.CacheBuilder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import java.util.concurrent.TimeUnit;

@Configuration
public class GuavaCacheConfig {

    @Bean
    public Cache<Long, User> userCache() {
        return CacheBuilder.newBuilder()
                .expireAfterWrite(1, TimeUnit.HOURS) // 設(shè)置緩存過(guò)期時(shí)間
                .maximumSize(1000) // 設(shè)置最大緩存條目數(shù)
                .build();
    }
}

總結(jié)

在高并發(fā)的Spring Boot + PGSQL環(huán)境中,可以使用Spring Cache抽象、EhCache、Redis或Guava Cache來(lái)提高系統(tǒng)性能。選擇合適的緩存技術(shù)并結(jié)合實(shí)際情況進(jìn)行配置,可以有效減少數(shù)據(jù)庫(kù)負(fù)載,提升系統(tǒng)響應(yīng)速度。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI