Memcached和Mongodb安装配置Java连接

Memcached安装配置

安装环境为Ubuntu16.04

安装依赖库
sudo apt-get install libevent libevent-deve
安装Memcached
sudo apt-get install memcached
允许远程访问

修改 memcached.conf

sudo vim /etc/memcached.conf

将-l 127.0.0.1中的ip地址改成0.0.0.0

运行
/usr/bin/memcached -p 11211 -d
或者直接
/etc/init.d/memcachced start

参数有很多,含义为

-d是启动一个守护进程;
-m是分配给Memcache使用的内存数量,单位是MB;
-u是运行Memcache的用户;
-l是监听的服务器IP地址,可以有多个地址;
-p是设置Memcache监听的端口,,最好是1024以上的端口;
-c是最大运行的并发连接数,默认是1024;
-P是设置保存Memcache的pid文件。
java辅助类

maven上没有相关jar,需要自行下载,地址为https://github.com/gwhalin/Memcached-Java-Client/downloads, 测试使用的版本是2.6.6,算上依赖的jar包一共有4个,引入后添加辅助类:

import com.danga.MemCached.MemCachedClient;  
import com.danga.MemCached.SockIOPool;  
  
/**** 
 *  
 *         功能描述:MemCached的工具类 
 */  
public class MemcachedUtil {  
  
    /** 
     * memcached客户端单例,唯一实例 
     */  
    private static MemCachedClient cachedClient = new MemCachedClient();  
  
    /** 
     * 初始化连接池 
     */  
    static {  
        // 获取连接池的实例  
        SockIOPool pool = SockIOPool.getInstance();  
  
        // 服务器列表及其权重  
        String[] servers = { "127.0.0.1:11211" };  
        Integer[] weights = { 3 };  
  
        // 设置服务器信息  
        pool.setServers(servers);  
        pool.setWeights(weights);  
  
        // 设置初始连接数、最小连接数、最大连接数、最大处理时间  
        pool.setInitConn(10);  
        pool.setMinConn(10);  
        pool.setMaxConn(1000);  
        pool.setMaxIdle(1000 * 60 * 60);  
  
        // 设置连接池守护线程的睡眠时间  
        pool.setMaintSleep(60);  
  
        // 设置TCP参数,连接超时  
        pool.setNagle(false);  
        pool.setSocketTO(60);  
        pool.setSocketConnectTO(0);  
  
        // 初始化并启动连接池  
        pool.initialize();  
  
        // 压缩设置,超过指定大小的都压缩  
        // cachedClient.setCompressEnable(true);  
        // cachedClient.setCompressThreshold(1024*1024);  
  
        cachedClient.setPrimitiveAsString(true);// 设置序列化  
  
    }  
  
    /** 
     * 构造函数:工具类,禁止实例化 
     */  
    private MemcachedUtil() {  
    }  
  
    /*** 
     * 功能描述:新增一个缓存数据,如果key存在不会新增 
     *  
     * @param 缓存的key 
     * @param 缓存的值 
     * @return 操作结果 
     */  
    public static boolean add(String key, Object value) {  
        return cachedClient.add(key, value);  
    }  
  
    /** 
     * 功能描述:新增一个缓存数据,设置过期时间参数为秒 
     * @param 缓存的key 
     * @param 缓存的值 
     * @param 缓存时间 
     * @return 操作结果 
     */  
    public static boolean add(String key, Object value, Integer expire) {  
        return cachedClient.add(key, value, expire);  
    }  
  
    /** 
     * 功能描述:新增一个缓存数据,如果存在key,则更新该key的值 
     * @param 缓存的key 
     * @param 缓存的值 
     * @return 操作结果 
     */  
    public static boolean put(String key, Object value) {  
        return cachedClient.set(key, value);  
    }  
  
    /** 
     * 功能描述:新增一个缓存数据,如果存在key,则更新该key的值 
     * @param 缓存的key 
     * @param 缓存的值 
     * @param 缓存时间 
     * @return 操作结果 
     */  
    public static boolean put(String key, Object value, Integer expire) {  
        return cachedClient.set(key, value, expire);  
    }  
  
    /** 
     * 功能描述:替换一个缓存数据,如果存在key则替换,否则返回false 
     * @param key 
     * @param value 
     * @return 操作结果 
     */  
    public static boolean replace(String key, Object value) {  
        return cachedClient.replace(key, value);  
    }  
  
    /** 
     * 功能描述:替换一个缓存数据,如果存在key则替换,否则返回false 
     * @param key 
     * @param value 
     * @param 缓存时间 
     * @return 操作结果 
     */  
    public static boolean replace(String key, Object value, Integer expire) {  
        return cachedClient.replace(key, value, expire);  
    }  
  
    /** 
     * 功能描述:根据key得到一个缓存数据 
     * @param key 
     * @return 操作结果 
     */  
    public static Object get(String key) {  
        return cachedClient.get(key);  
    }  
  
    /** 
     * 功能描述:刷新全部缓存(就是将所有缓存设置为过期,以后放入的会覆盖掉这些过期的缓存数据) 
     *  
     * @return 操作结果 
     */  
    public static boolean flushAll() {  
        return cachedClient.flushAll();  
    }  
      
    /*** 
     * 功能描述:根据key删除一个缓存数据 
     * @return 操作结果 
     */  
    public static boolean delete(String key){  
        return cachedClient.delete(key);  
    }  
      
  
}

Mongodb的安装

安装
sudo apt-get install mongodb
验证
mongo -version
启动
service mongodb start
进入
mongo

其他基本操作参考这里
修改密码参考这里

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

lootaa

你的鼓励是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值