- 浏览: 154111 次
- 性别:
- 来自: 深圳
文章分类
最新评论
-
lyaqys:
lz实现的OptimisticExclusiveLock有点问 ...
java park/unpark 【java并发】基于JUC CAS原理,自己实现简单独占锁
package test;
import net.sf.ehcache.Cache;
import net.sf.ehcache.CacheManager;
import net.sf.ehcache.Element;
public class TestEhCache {
public static void main(String[] args) throws InterruptedException {
CacheManager singletonManager = new CacheManager();
Cache cache = new Cache("00", 1, false, false, 10, 10);
singletonManager.addCache(cache);
cache.put(new Element("1", "1"));
Element el = cache.get("1");
if(el!=null){
System.out.println("1:"+ el.getValue());
}
cache.put(new Element("2", "2"));
el = cache.get("1");
if(el!=null){
System.out.println("1:"+ el.getValue());
}else{
System.out.println("1:null");
}
el = cache.get("2");
if(el!=null){
System.out.println("2:"+ el.getValue());
}
Thread.sleep(10000);
el = cache.get("2");
if(el!=null){
System.out.println("2:"+ el.getValue());
}else{
System.out.println("2:null");
}
}
}
import net.sf.ehcache.Cache;
import net.sf.ehcache.CacheManager;
import net.sf.ehcache.Element;
public class TestEhCache {
public static void main(String[] args) throws InterruptedException {
CacheManager singletonManager = new CacheManager();
Cache cache = new Cache("00", 1, false, false, 10, 10);
singletonManager.addCache(cache);
cache.put(new Element("1", "1"));
Element el = cache.get("1");
if(el!=null){
System.out.println("1:"+ el.getValue());
}
cache.put(new Element("2", "2"));
el = cache.get("1");
if(el!=null){
System.out.println("1:"+ el.getValue());
}else{
System.out.println("1:null");
}
el = cache.get("2");
if(el!=null){
System.out.println("2:"+ el.getValue());
}
Thread.sleep(10000);
el = cache.get("2");
if(el!=null){
System.out.println("2:"+ el.getValue());
}else{
System.out.println("2:null");
}
}
}
发表评论
-
java 栈内存解惑
2013-10-23 23:41 676int j = 0; j = j++; ... -
libevent简单的http实现
2013-07-22 22:44 5991 #include <sys/types.h> ... -
Google Guava Collections 使用介绍
2013-07-16 18:10 714Google Guava Collections 使用介绍 J ... -
Google Collections(Guava)中强大的Concurrent MapMaker
2013-07-16 18:07 1365仔细研究了刚发布1.0版本的Google Collection ... -
java wait 研究
2013-06-28 17:07 780[color=red]java wait 的使用必须放在实例对 ... -
java钩子函数的使用已经kill
2013-06-27 22:31 1557package com.aircoder.test; imp ... -
java获取所有的线程信息
2013-06-24 20:02 1604public class T2 { public sta ... -
java 获取mysql datetime 时间注意
2013-05-16 14:43 1523class SPubinfo implements RowMa ... -
atoi源码
2013-05-14 19:32 1262原文: http://blog.csdn.net/eroswa ... -
为重负网络优化 Nginx 和 Node.js
2013-05-13 01:12 1010原文:http://linux.cn/forum.php?mo ... -
java wait的解锁理解********
2013-04-18 10:49 948很多书都说wait会释放线程加的锁,其实经过试验不是这样的, ... -
sphinx 遇见的问题
2013-04-16 14:54 10211>>index 'xxx': search er ... -
mysql 下载地址
2013-04-11 11:25 615http://mysql.ntu.edu.tw/Downloa ... -
sphinx 安装
2013-04-10 19:54 538[@zw-76-80 soft]$ rpm -ivh MySQ ... -
jvm 关闭处理注册方法
2013-04-08 16:11 761import java.lang.*; public cla ... -
wget ftp 下载文件java代码
2013-04-05 15:16 1163private boolean wget(String fil ... -
xPath 解析xml
2013-04-05 15:14 739使用xPath 根据路径解析文件. xpath 具有多个版本。 ... -
java callable疑惑:
2013-04-05 15:12 585看了 线程持的源码和Futuretask的源码终于明白了 Fu ... -
ubuntu eclipse 问题
2013-04-05 03:30 797Eclipse 3.6 在 Ubuntu 10.04 下会出现 ... -
java park/unpark 【java并发】基于JUC CAS原理,自己实现简单独占锁
2013-03-27 16:47 2550LockSupport.park(); 停止 Sy ...
相关推荐
ta_lib-0.5.1-cp312-cp312-win32.whl
课程设计 在线实时的斗兽棋游戏,时间赶,粗暴的使用jQuery + websoket 实现实时H5对战游戏 + java.zip课程设计
ta_lib-0.5.1-cp310-cp310-win_amd64.whl
基于springboot+vue物流系统源码数据库文档.zip
GEE训练教程——Landsat5、8和Sentinel-2、DEM和各2哦想指数下载
知识图谱
333498005787635解决keil下载失败的文件.zip
【微信机器人原理与实现】 微信机器人是通过模拟微信客户端的行为,自动处理消息、发送消息的程序。在Python中实现微信机器人的主要库是WeChatBot,它提供了丰富的接口,允许开发者方便地进行微信消息的接收与发送。这个项目标题中的"基于python实现的微信机器人源码"指的是使用Python编程语言编写的微信机器人程序。 1. **Python基础**:Python是一种高级编程语言,以其简洁的语法和强大的功能深受开发者喜爱。在实现微信机器人时,你需要熟悉Python的基本语法、数据类型、函数、类以及异常处理等概念。 2. **微信API与WeChatBot库**:微信为开发者提供了微信公共平台和微信开放平台,可以获取到必要的API来实现机器人功能。WeChatBot库是Python中一个用于微信开发的第三方库,它封装了微信的API,简化了消息处理的流程。使用WeChatBot,开发者可以快速搭建起一个微信机器人。 3. **微信OAuth2.0授权**:为了能够接入微信,首先需要通过OAuth2.0协议获取用户的授权。用户授权后,机器人可以获取到微信用户的身份信息,从而进行
基于springboot实验室研究生信息管理系统源码数据库文档.zip
张力控制,色标跟踪,多轴同步,电子凸轮,横切等工艺控制案例。
在Python编程环境中,处理Microsoft Word文档是一项常见的任务。Python提供了几个库来实现这一目标,如`python-docx`,它可以让我们创建、修改和操作.docx文件。本教程将重点介绍如何利用Python进行Word文档的合并、格式转换以及转换为PDF。 1. **合并Word文档(merge4docx)** 合并多个Word文档是一项实用的功能,特别是在处理大量报告或文档集合时。在Python中,可以使用`python-docx`库实现。我们需要导入`docx`模块,然后读取每个文档并将其内容插入到主文档中。以下是一个基本示例: ```python from docx import Document def merge4docx(file_list, output_file): main_doc = Document() for file in file_list: doc = Document(file) for paragraph in doc.paragraphs: main_doc.add_paragraph(paragraph.text) m
基于springboot+Javaweb的二手图书交易系统源码数据库文档.zip
基于springboot餐品美食论坛源码数据库文档.zip
基于springboot亚运会志愿者管理系统源码数据库文档.zip
使用WPF的数据样式绑定,切换对象数据值来完成控件动态切换背景渐变动画效果。 使用动画样式渲染比线程修改性能消耗更低更稳定
基于SpringBoot的企业客源关系管理系统源码数据库文档.zip
基于springboot+vue的桂林旅游网站系统源码数据库文档.zip
基于springboot嗨玩旅游网站源码数据库文档.zip
基于springboot的流浪动物管理系统源码数据库文档.zip
基于springboot课件通中小学教学课件共享平台源码数据库文档.zip