Java 实现缓存,一个线程存,一个线程取

Posted 王晓东

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java 实现缓存,一个线程存,一个线程取相关的知识,希望对你有一定的参考价值。

 

 

缓存类:

 

package com.zit.test;

import java.util.concurrent.BlockingDeque;
import java.util.concurrent.LinkedBlockingDeque;

public enum Cache {

	INSTANCE;
	
	public BlockingDeque<String> list = new LinkedBlockingDeque<String>();
	
	
	public void put(String str) {
		try {
			list.put(str);
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
	}
	
	public String take(){
 		String str = null;
		try {
			str = list.take();
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
		return str;
	}
	
	public boolean isEmpty(){
		return list.isEmpty();
	}
}

  

线程1:存数据

 

package com.zit.test;

import javax.annotation.PostConstruct;

import org.springframework.stereotype.Component;

@Component
public class TestCache1 {

    @PostConstruct
    public void method1() {
        
        new Thread(new Runnable() {
            @Override
            public void run() {
                int i = 0; 
                while(true) {

                    Cache.INSTANCE.put("g" + i);
                    i++;
                    try {
                         Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
            
        },"ThreadPut").start();
    }

}

 

 

 线程2:取数据

 

package com.zit.test;

import javax.annotation.PostConstruct;

import org.springframework.stereotype.Component;

@Component
public class TestCache2 {

    @PostConstruct
    public void method2() {
        
        new Thread(new Runnable() {
            @Override
            public void run() {
                while(true) {
                    if(Cache.INSTANCE.isEmpty()) {
                        try {
                            Thread.sleep(200);
                        } catch (InterruptedException e) {
                            e.printStackTrace();
                        }
                        continue;
                    }
                    
                    String str = Cache.INSTANCE.take();
                    System.out.println(str);
                }
            }
            
        },"ThreadTake").start();
        
        
    }

}

 

 

启动Web工程,可见效果

 

 

 

奇怪的是,如果不在Web工程里,只是运行Java类,没有效果

 

以上是关于Java 实现缓存,一个线程存,一个线程取的主要内容,如果未能解决你的问题,请参考以下文章

硅谷新闻9--图片三级缓存

java-- 多线程之间实现通讯

Java多线程——Volatile关键字保证可见性,有序性,禁止指令重排实现

Java多线程——Volatile关键字保证可见性,有序性,禁止指令重排实现

Java多线程——Volatile关键字保证可见性,有序性,禁止指令重排实现

Java多线程——Volatile关键字保证可见性,有序性,禁止指令重排实现