博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
160530、memcached集群(spring集成的配置)
阅读量:4982 次
发布时间:2019-06-12

本文共 1880 字,大约阅读时间需要 6 分钟。

第一步:在linux机或windows机上安装memcached服务端(server)

        linux中安装memcached:centos中命令 yum -y install memcached

        如果没有联网下载mencached的安装包(注意:需要安装依赖libevent)

        从网上下载安装包,解压后make&&make install就完成了

第二步:项目中导入memcached客户端jar(client)有两个版本,选择2.4的

第三步:spring集成memcached(memcached.xml中)

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jdbc="http://www.springframework.org/schema/jdbc"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="
     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
     http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
     http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
     http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
     http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
    <!-- Memcached 配置 -->
    <bean id="memCachedClient" class="com.danga.MemCached.MemCachedClient">
        <constructor-arg>
            <value>sockIOPool</value>
        </constructor-arg>
    </bean>
    <!-- Memcached连接池 -->
    <bean id="sockIOPool" class="com.danga.MemCached.SockIOPool" factory-method="getInstance" init-method="initialize" destroy-method="shutDown">
        <constructor-arg>
            <value>sockIOPool</value>
        </constructor-arg>
        <property name="servers">
            <list>

    <!--memcached集群,有几个就列几个11211为端口号-->

                <value>192.168.200.149:11211</value>

                <value>192.168.200.150:11211</value>          

            </list>

        </property>
        <property name="weights">
            <list>
                <value>1</value>
            </list>
        </property>
    </bean>
</beans>

转载于:https://www.cnblogs.com/zrbfree/p/5545724.html

你可能感兴趣的文章
面试了一个开发人员
查看>>
软件工程及软件项目开发流程
查看>>
关于android4.3 bluetooth4.0的那些事儿
查看>>
嵌入式成长轨迹14 【嵌入式环境及基础】【Linux下的C编程 上】【gcc、gdb和GNU Make】...
查看>>
C语言讲义——变量的输出
查看>>
shell脚本 ----每天学一点shell
查看>>
FZU2150 :Fire Game (双起点BFS)
查看>>
php_常用操作_读取文件_数据库操作
查看>>
Linux中GCC源码编译安装
查看>>
equals与==关于Object覆盖和重载问题
查看>>
KVO
查看>>
js基础教程四之无缝滚动
查看>>
JS插件分享:感应鼠标进入方向图片展示
查看>>
Thinkphp控制器,1.多层控制器2.多级控制器
查看>>
幽默数
查看>>
软件测试_lab2_Selenium自动化
查看>>
简易计算器软件的典型用户和 场景
查看>>
oracle instantclient_12_2安装
查看>>
2005年华中科技大学计算机保研机试真题 找位置
查看>>
windows环境下MySQL-5.7.12-winx64下载安装与配置
查看>>