常言笑的家

          Spring, Hibernate, Struts, Ajax, RoR

          Redis 3.X版本引入了集群的新特性的三種用法

          一、利用Jedis來實現(xiàn)

                  Set<HostAndPort>  jedisClusterNodes = new HashSet<HostAndPort>();

                    //Jedis Cluster will attempt to discover cluster nodes automatically

                   jedisClusterNodes.add(new HostAndPort("10.96.5.183",9001));

                   jedisClusterNodes.add(new HostAndPort("10.96.5.183",9002));

                   jedisClusterNodes.add(new HostAndPort("10.96.5.183",9003));

                  JedisCluster jc = new JedisCluster(jedisClusterNodes);

          二、利用spring-data-redis來實現(xiàn)

               <!--通過構(gòu)造方法注入RedisNode-->

               <bean id="clusterRedisNodes1"   class="org.springframework.data.redis.connection.RedisNode"> 

                      <constructor-arg value="10.96.5.183" />

                     <constructor-arg value="9002" type="int" />

               </bean>

               ....

              <!--setter方式注入-->

              <bean id="redisClusterConfiguration"   class="org.springframework.data.redis.connection.RedisClusterConfiguration">

                 <property name="clusterNodes">

                        <set>

                                  <ref bean="clusterRedisNodes1"/>

                                 <ref bean="clusterRedisNodes2"/>

                                 <ref bean="clusterRedisNodes3"/>

                        </set>

                 </property>
              </bean>

            <!--setter方式注入,對應(yīng)的屬性需存在setterXXX方法-->


             <bean id="jedisPoolConfig"   class="redis.clients.jedis.JedisPoolConfig">

                      <property name="maxToal" value="1000" />

                     <property name="maxIdle" value="1000" />

                     <property name="maxWaitMillis" value="1000" />

             </bean>

            <bean id="jedisConnFactory"   class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory" p:use-pool="true">

                     <constructor-arg ref="redisClusterConfiguration" />

                     <constructor-arg ref="jedisPoolConfig" />

            </bean>

           <bean id="redisTemplate"   class="org.springframework.data.redis.core.RedisTemplate"  p:connection-factory-ref="jedisConnFactory" />

          <!--setter方式注入PersonRepoImpl-->

          <bean id="personRepo"  class="com.example.repo.impl.PersonRepoImpl">

                 <property name="redisTemplate" ref="redisTemplate" />

          </bean>

          三、簡單集成Spring

              自己編寫jedisCluster的工廠類JedisClusterFactory,然后通過Spring注入的方式獲取jedisCluster,實現(xiàn)客戶端使用Redis3.0版本的集群特性。

          posted on 2016-08-07 17:32 常言笑 閱讀(587) 評論(0)  編輯  收藏


          只有注冊用戶登錄后才能發(fā)表評論。


          網(wǎng)站導(dǎo)航:
           

          My Links

          Blog Stats

          常用鏈接

          留言簿(5)

          隨筆分類

          隨筆檔案

          搜索

          積分與排名

          最新評論

          閱讀排行榜

          評論排行榜

          主站蜘蛛池模板: 镇平县| 乌海市| 乌审旗| 竹北市| 云龙县| 安福县| 苏尼特左旗| 错那县| 大姚县| 涞源县| 镇康县| 垣曲县| 舟山市| 通州市| 福建省| 北宁市| 柳林县| 拜城县| 玉溪市| 郧西县| 原平市| 册亨县| 阳高县| 日喀则市| 淳安县| 根河市| 保康县| 辽源市| 嘉黎县| 利津县| 文水县| 临泉县| 富民县| 屯门区| 交口县| 慈溪市| 宁波市| 香河县| 界首市| 辽宁省| 海伦市|