国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Table of Contents
1. Technical background
2. Technical effect
3. ExpiringMap
3.1 Function Introduction
3.2 Source code
3.3 Example
Home Java javaTutorial How to set expiration time map in Java

How to set expiration time map in Java

May 04, 2023 am 10:13 AM
java map

1. Technical background

In actual project development, we often use caching middleware (such as redis, MemCache, etc.) to help us improve the availability and robustness of the system.

But many times if the project is relatively simple, there is no need to specifically introduce middleware such as Redis to use cache to increase the complexity of the system. So does Java itself have any useful lightweight caching components?

The answer is of course yes, and there is more than one way. Common solutions include: ExpiringMap, LoadingCache and HashMap-based packaging.

2. Technical effect

  • Realize common functions of cache, such as outdated deletion strategy

  • Hot data warm-up

3. ExpiringMap

3.1 Function Introduction

  • Entries in the Map can be set to automatically expire after a period of time.

  • You can set the maximum capacity value of the Map. When the Maximum size is reached, inserting a value again will cause the first value in the Map to expire.

  • You can add listening events and schedule the listening function when the Entry expires.

  • You can set up lazy loading and create objects when the get() method is called.

3.2 Source code

github address

3.3 Example

Add dependency (Maven)

<dependency> 
    <groupId>net.jodah</groupId> 
    <artifactId>expiringmap</artifactId> 
    <version>0.5.8</version> 
</dependency>

Example source code

public class ExpiringMapApp {

    public static void main(String[] args) {
        // maxSize: 設(shè)置最大值,添加第11個entry時,會導致第1個立馬過期(即使沒到過期時間)
        // expiration:設(shè)置每個key有效時間10s, 如果key不設(shè)置過期時間,key永久有效。
        // variableExpiration: 允許更新過期時間值,如果不設(shè)置variableExpiration,不允許后面更改過期時間,一旦執(zhí)行更改過期時間操作會拋異常UnsupportedOperationException
        // policy:
        //        CREATED: 只在put和replace方法清零過期時間
        //        ACCESSED: 在CREATED策略基礎(chǔ)上增加, 在還沒過期時get方法清零過期時間。
        //        清零過期時間也就是重置過期時間,重新計算過期時間.
        ExpiringMap<String, String> map = ExpiringMap.builder()
            .maxSize(10)
            .expiration(10, TimeUnit.SECONDS)
            .variableExpiration().expirationPolicy(ExpirationPolicy.CREATED).build();

        map.put("token", "lkj2412lj1412412nmlkjl2n34l23n4");
        map.put("name", "管理員", 20000, TimeUnit.SECONDS);

        // 模擬線程等待...
        try {
            Thread.sleep(15000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

        System.out.println("token ===> " + map.get("token"));
        System.out.println("name ===> " + map.get("name"));

        // 注意: 在創(chuàng)建map時,指定的那些參數(shù)如過期時間和過期策略都是全局的, 對map中添加的每一個entry都適用.
        //        在put一個entry鍵值對時可以對當前entry 單獨設(shè)置 過期時間、過期策略,只對當前這個entry有效.
    }
}

Run result

##token ===> null

name ===> Administrator

Attention

When creating a map, the specified parameters such as expiration time and expiration policy are global and apply to every entry added to the map.
When putting an entry key-value pair, you can set the expiration time and expiration policy separately for the current entry, which is only valid for the current entry.

4. LoadingCache

4.1 Function Introduction

A thread-safe local caching solution open sourced by Google.

Features: Provide cache recycling mechanism, monitor cache loading/hit status, flexible and powerful functions, simple and easy-to-use API.

4.2 Example

Source code

public class LoadingCacheApp {

    public static void main(String[] args) throws Exception {
        // maximumSize: 緩存池大小,在緩存項接近該大小時, Guava開始回收舊的緩存項
        // expireAfterAccess: 設(shè)置時間對象沒有被讀/寫訪問則對象從內(nèi)存中刪除(在另外的線程里面不定期維護)
        // removalListener: 移除監(jiān)聽器,緩存項被移除時會觸發(fā)的鉤子
        // recordStats: 開啟Guava Cache的統(tǒng)計功能
        LoadingCache<String, String> cache = CacheBuilder.newBuilder()
            .maximumSize(100)
            .expireAfterAccess(10, TimeUnit.SECONDS)
            .removalListener(new RemovalListener<String, String>() {
                @Override
                public void onRemoval(RemovalNotification<String, String> removalNotification) {
                    System.out.println("過時刪除的鉤子觸發(fā)了... key ===> " + removalNotification.getKey());
                }
            })
            .recordStats()
            .build(new CacheLoader<String, String>() {
                // 處理緩存鍵不存在緩存值時的處理邏輯
                @Override
                public String load(String key) throws Exception {
                    return "不存在的key";
                }
            });

        cache.put("name", "小明");
        cache.put("pwd", "112345");

        // 模擬線程等待...
        try {
            Thread.sleep(15000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

        System.out.println("token ===> " + cache.get("name"));
        System.out.println("name ===> " + cache.get("pwd"));
    }
}
Run result

The outdated deletion hook triggered... key ===> name

token ===> Non-existent key
The obsolete deletion hook triggered... key ===> pwd
name ===> Non-existent key

4.3 Removal mechanism

When guava caches data, there are two types of data removal: passive removal and active removal.

Passive removal

  • Size-based removal: When the number reaches the specified size, uncommon key values ??will be removed

  • Time-based removal: expireAfterAccess(long, TimeUnit) removes a key-value pair based on the time after the last access. expireAfterWrite(long, TimeUnit) Remove based on the time after a key-value pair is created or the value is replaced

  • Reference-based removal: mainly based on Java's garbage collection mechanism. Determine removal based on the reference relationship of the key or value

Active removal

  • Remove individually: Cache.invalidate(key)

  • Batch removal: Cache.invalidateAll(keys)

  • Remove all: Cache.invalidateAll()

If the removal listener RemovalListener is configured, the logic under the listener will be executed synchronously during all removal actions.

If you need to change to asynchronous, use: RemovalListeners.asynchronous(RemovalListener, Executor).

4.4 Others

  • Before the put operation, if it has With this key value, removeListener will be triggered first to remove the listener, and then

  • is configured with expireAfterAccess and expireAfterWrite, but it is not removed after the specified time.

  • Delete policy logic:

The cache built by CacheBuilder will not automatically perform cleaning and recycling work at a specific time, nor will it be executed at a certain time. The cache item is cleared immediately after it expires. It does not start a thread for cache maintenance, because firstly the thread is relatively heavy, and secondly some environments limit the creation of threads.

It will do a small amount of maintenance work during write operations, or occasionally during read operations. Of course, you can also create your own maintenance thread and call Cache.cleanUp() at fixed intervals.

The above is the detailed content of How to set expiration time map in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

PHP Tutorial
1502
276
How to handle transactions in Java with JDBC? How to handle transactions in Java with JDBC? Aug 02, 2025 pm 12:29 PM

To correctly handle JDBC transactions, you must first turn off the automatic commit mode, then perform multiple operations, and finally commit or rollback according to the results; 1. Call conn.setAutoCommit(false) to start the transaction; 2. Execute multiple SQL operations, such as INSERT and UPDATE; 3. Call conn.commit() if all operations are successful, and call conn.rollback() if an exception occurs to ensure data consistency; at the same time, try-with-resources should be used to manage resources, properly handle exceptions and close connections to avoid connection leakage; in addition, it is recommended to use connection pools and set save points to achieve partial rollback, and keep transactions as short as possible to improve performance.

Understanding the Java Virtual Machine (JVM) Internals Understanding the Java Virtual Machine (JVM) Internals Aug 01, 2025 am 06:31 AM

TheJVMenablesJava’s"writeonce,runanywhere"capabilitybyexecutingbytecodethroughfourmaincomponents:1.TheClassLoaderSubsystemloads,links,andinitializes.classfilesusingbootstrap,extension,andapplicationclassloaders,ensuringsecureandlazyclassloa

How to work with Calendar in Java? How to work with Calendar in Java? Aug 02, 2025 am 02:38 AM

Use classes in the java.time package to replace the old Date and Calendar classes; 2. Get the current date and time through LocalDate, LocalDateTime and LocalTime; 3. Create a specific date and time using the of() method; 4. Use the plus/minus method to immutably increase and decrease the time; 5. Use ZonedDateTime and ZoneId to process the time zone; 6. Format and parse date strings through DateTimeFormatter; 7. Use Instant to be compatible with the old date types when necessary; date processing in modern Java should give priority to using java.timeAPI, which provides clear, immutable and linear

Comparing Java Frameworks: Spring Boot vs Quarkus vs Micronaut Comparing Java Frameworks: Spring Boot vs Quarkus vs Micronaut Aug 04, 2025 pm 12:48 PM

Pre-formanceTartuptimeMoryusage, Quarkusandmicronautleadduetocompile-Timeprocessingandgraalvsupport, Withquarkusoftenperforminglightbetterine ServerLess scenarios.2.Thyvelopecosyste,

Understanding Network Ports and Firewalls Understanding Network Ports and Firewalls Aug 01, 2025 am 06:40 AM

Networkportsandfirewallsworktogethertoenablecommunicationwhileensuringsecurity.1.Networkportsarevirtualendpointsnumbered0–65535,withwell-knownportslike80(HTTP),443(HTTPS),22(SSH),and25(SMTP)identifyingspecificservices.2.PortsoperateoverTCP(reliable,c

How does garbage collection work in Java? How does garbage collection work in Java? Aug 02, 2025 pm 01:55 PM

Java's garbage collection (GC) is a mechanism that automatically manages memory, which reduces the risk of memory leakage by reclaiming unreachable objects. 1.GC judges the accessibility of the object from the root object (such as stack variables, active threads, static fields, etc.), and unreachable objects are marked as garbage. 2. Based on the mark-clearing algorithm, mark all reachable objects and clear unmarked objects. 3. Adopt a generational collection strategy: the new generation (Eden, S0, S1) frequently executes MinorGC; the elderly performs less but takes longer to perform MajorGC; Metaspace stores class metadata. 4. JVM provides a variety of GC devices: SerialGC is suitable for small applications; ParallelGC improves throughput; CMS reduces

Comparing Java Build Tools: Maven vs. Gradle Comparing Java Build Tools: Maven vs. Gradle Aug 03, 2025 pm 01:36 PM

Gradleisthebetterchoiceformostnewprojectsduetoitssuperiorflexibility,performance,andmoderntoolingsupport.1.Gradle’sGroovy/KotlinDSLismoreconciseandexpressivethanMaven’sverboseXML.2.GradleoutperformsMaveninbuildspeedwithincrementalcompilation,buildcac

go by example defer statement explained go by example defer statement explained Aug 02, 2025 am 06:26 AM

defer is used to perform specified operations before the function returns, such as cleaning resources; parameters are evaluated immediately when defer, and the functions are executed in the order of last-in-first-out (LIFO); 1. Multiple defers are executed in reverse order of declarations; 2. Commonly used for secure cleaning such as file closing; 3. The named return value can be modified; 4. It will be executed even if panic occurs, suitable for recovery; 5. Avoid abuse of defer in loops to prevent resource leakage; correct use can improve code security and readability.

See all articles