ewqw 发表于 2015-1-27 08:22:44

memCached的配置文件 配置

<?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:p="http://www.springframework.org/schema/p"
        xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="
                        http://www.springframework.org/schema/beans
                        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
                        http://www.springframework.org/schema/context   
            http://www.springframework.org/schema/context/spring-context-3.0.xsd
    ">
    <context:component-scan base-package="com.ibs.gbplatform.common.memcached" />

        <bean id="memCachedPool" class="com.whalin.memcached.SockIOPool"
                factory-method="getInstance" init-method="initialize" destroy-method="shutDown">
                <constructor-arg>
                        <value>memCachedPool</value>
                </constructor-arg>
                <property name="servers">
                        <list>
                                <value>127.0.0.1:11211</value>
                        </list>
                </property>
                <property name="initConn">
                        <value>20</value>
                </property>

                <property name="minConn">
                        <value>10</value>
                </property>

                <property name="maxConn">
                        <value>50</value>
                </property>

                <property name="maintSleep">
                        <value>3000</value>
                </property>

                <property name="nagle">
                        <value>false</value>
                </property>

                <property name="socketTO">
                        <value>3000</value>
                </property>
        </bean>

        <bean id="memCachedClient" class="com.whalin.memcached.MemCachedClient">
                <constructor-arg>
                        <value>memCachedPool</value>
                </constructor-arg>
        </bean>
</beans>

页: [1]
查看完整版本: memCached的配置文件 配置