23-springboot系列: Memcached初体验
Posted IT技术屋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了23-springboot系列: Memcached初体验相关的知识,希望对你有一定的参考价值。
今天谈谈一篇关于memcached的内容。Memcached 是一个高性能的分布式内存对象缓存系统。是基于内存存储键值对的hashmap,下面动手在springboot工程中搭建起来。
因本地是windows,下载下来直接解压,运行exe文件即可
接下来,在springboot项目pom.xml文件引入相关jar包。
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>net.spy</groupId>
<artifactId>spymemcached</artifactId>
<version>2.12.2</version>
</dependency>
</dependencies>
在 application.properties 配置memcached的相关属性
memcache.ip=127.0.0.1
memcache.port=11211
/**
* @author zhangl
* @version 1.0
* @description: 获取配置文件参数
* @date 2020-09-14 19:23
*/
"memcache") (prefix =
public class MemcacheSource {
private String ip;
private int port;
public String getIp() {
return ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public int getPort() {
return port;
}
public void setPort(int port) {
this.port = port;
}
}
因初始化需要在项目启动时操作,故用到了上两篇的知识点,不熟悉的小伙伴可以翻一翻之前的文章。
/**
* @author zhangl
* @version 1.0
* @description: 初始化memcached相关配置
* @date 2020-09-16 19:27
*/
4j
public class MemcachedRunner implements CommandLineRunner {
private MemcacheSource memcacheSource;
private MemcachedClient client = null;
public void run(String... args) throws Exception {
try {
client = new MemcachedClient(new InetSocketAddress(memcacheSource.getIp(),memcacheSource.getPort()));
} catch (IOException e) {
log.error("inint MemcachedClient failed ",e);
}
}
public MemcachedClient getClient() {
return client;
}
}
处理到这,相关的环境搭建就已经可以了,下面写个测试类来验证下是否有效,缓存数据。
public class MemcachedTest {
private MemcachedRunner memcachedRunner;
public void testSetGet() {
MemcachedClient memcachedClient = memcachedRunner.getClient();
memcachedClient.set("tel",1000,"13128600812");
System.out.println("作者微信号:" + memcachedClient.get("tel"));
}
}
源码获取:
历史回顾:
加入技术群讨论,备注:1
软件定制及其他业务,备注:2
以上是关于23-springboot系列: Memcached初体验的主要内容,如果未能解决你的问题,请参考以下文章
Tokyo Tyrant(TTServer)系列-数据丢失谁的错