91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何根據業務需求調整Spring Boot的PGSQL緩存策略

發布時間:2024-11-09 09:19:40 來源:億速云 閱讀:80 作者:小樊 欄目:編程語言

要根據業務需求調整Spring Boot的PostgreSQL(PGSQL)緩存策略,你可以采取以下幾種方法:

1. 配置連接池緩存

Spring Boot使用HikariCP作為默認的數據庫連接池。HikariCP提供了內置的緩存機制,可以調整緩存大小和行為。

調整HikariCP緩存大小

你可以在application.propertiesapplication.yml文件中配置HikariCP的緩存大小。

application.properties:

spring.datasource.hikari.maximum-pool-size=20
spring.datasource.hikari.minimum-idle=5
spring.datasource.hikari.connection-timeout=30000
spring.datasource.hikari.idle-timeout=600000

application.yml:

spring:
  datasource:
    hikari:
      maximum-pool-size: 20
      minimum-idle: 5
      connection-timeout: 30000
      idle-timeout: 600000

2. 配置查詢緩存

Spring Boot本身不提供查詢緩存功能,但你可以使用第三方庫如Spring Data JPA的@QueryCache注解來實現。

使用@QueryCache注解

你可以在Repository接口中使用@QueryCache注解來啟用查詢緩存。

import org.springframework.cache.annotation.QueryCacheable;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

@Repository
public interface UserRepository extends JpaRepository<User, Long> {

    @QueryCacheable(cacheNames = "users", key = "#id")
    User findById(Long id);
}

3. 使用第三方緩存庫

你可以使用第三方緩存庫如EhCache、Redis等來緩存查詢結果。

配置EhCache

首先,添加EhCache依賴:

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

然后,配置EhCache:

spring.cache.type=ehcache

創建一個EhCache配置文件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>

4. 自定義緩存策略

如果你需要更復雜的緩存策略,可以實現自定義的CacheManager

實現自定義CacheManager

import org.springframework.cache.Cache;
import org.springframework.cache.annotation.CachingConfigurerSupport;
import org.springframework.cache.interceptor.CacheErrorHandler;
import org.springframework.cache.interceptor.CacheResolver;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.env.Environment;
import org.springframework.data.redis.cache.RedisCacheManager;
import org.springframework.data.redis.connection.RedisConnectionFactory;

@Configuration
public class CacheConfig extends CachingConfigurerSupport {

    @Bean
    public RedisCacheManager cacheManager(RedisConnectionFactory redisConnectionFactory) {
        RedisCacheManager redisCacheManager = RedisCacheManager.builder(redisConnectionFactory)
                .cacheDefaults(defaultCacheConfiguration())
                .withInitialCacheConfigurations(getCacheConfigurations())
                .transactionAware()
                .build();
        return redisCacheManager;
    }

    private RedisCacheConfiguration defaultCacheConfiguration() {
        return RedisCacheConfiguration.defaultCacheConfig()
                .entryTtl(Duration.ofMinutes(10))
                .disableCachingNullValues();
    }

    private Map<String, RedisCacheConfiguration> getCacheConfigurations() {
        Map<String, RedisCacheConfiguration> cacheConfigurations = new HashMap<>();
        cacheConfigurations.put("users", getUsersCacheConfiguration());
        return cacheConfigurations;
    }

    private RedisCacheConfiguration getUsersCacheConfiguration() {
        return RedisCacheConfiguration.defaultCacheConfig()
                .entryTtl(Duration.ofMinutes(5))
                .disableCachingNullValues();
    }

    @Override
    public CacheResolver cacheResolver() {
        return super.cacheResolver();
    }

    @Override
    public CacheErrorHandler errorHandler() {
        return super.errorHandler();
    }
}

總結

根據業務需求調整Spring Boot的PGSQL緩存策略可以通過配置連接池緩存、使用查詢緩存、使用第三方緩存庫或實現自定義緩存策略來實現。選擇合適的緩存策略可以提高應用程序的性能和響應速度。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

分宜县| 湘潭县| 北票市| 天祝| 汝南县| 安顺市| 岐山县| 湟源县| 平泉县| 碌曲县| 开平市| 汝南县| 延寿县| 色达县| 浠水县| 木里| 新巴尔虎右旗| 临沂市| 大竹县| 禄劝| 汕尾市| 元谋县| 吉林市| 永新县| 桃源县| 攀枝花市| 仪陇县| 珠海市| 蕉岭县| 枞阳县| 金门县| 鞍山市| 浦东新区| 牡丹江市| 栾城县| 日土县| 南溪县| 漳平市| 安国市| 桂东县| 温州市|