`
文章列表
  http://rantav.github.com/hector/build/html/content/getting_started.html https://github.com/zznate/hector-examples.git     private static final String DYN_KEYSPACE = "logdb"; private static final String DYN_CF = "user"; private static StringSerializer stringSeri ...
  参照hadoop-0.20.2/docs/quickstart.html     注:ssh-copy-id -i ~/.ssh/id_rsa.pub localhost,我的 用户名是fansxnet    配置我们的hadoop伪分布式,打开下面的页面,配置成功。   NameNode - http://localhost:50070/ JobTracker - http://localhost:50030/ mapreduce 9001 hdfs  9000 添加hadoop的eclipse的插件并重起eclipse。 hado ...
下载 solr3.5 tomcat paoding   tomcat上添加solr应用 复制apache-solr-3.5.0\example\webapps\solr.war包到tomcat-7.0.21\webapps目录下。   复制apache-solr-3.5.0\example\solr文件夹到tomcat-7.0.21\webapps\solr文件夹下。   新建xml文件 tomcat-7.0.21\conf\Catalina\localhost\solr.xml     <?xml version='1.0' encoding='utf-8' ...
随着长时间的工作,框架都比较固定,稳定。没什么新鲜感了,故作一个小例子。以备以后用到。 Maven项目。
spring的基础文件配置   1、applicationContext.xml   <?xml version="1.0" encoding="UTF-8" standalone="no"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http ...
<?php header('Content-type:text/html; charset=UTF-8'); $isArray = true; $jsonData ='[{"Name":"小明","Age":20},{"Name":"小明","Age":20}]'; $jsonArray = json_decode($jsonData,$isArray); foreach ($jsonArray as $item){ echo $item['Name'] ...
参考 https://docs.jboss.org/author/display/ISPN/Infinispan+Distributed+Execution+Framework#InfinispanDistributedExecutionFramework-MapReducemodel     首先下载我们的infinispan5的运行环境 https://github.com/infinispan/infinispan-quickstart.git     中org.infinispan.quickstart.clusteredcache.distribution.NodeCl ...
package com.snailteam.adserver.until; import java.io.UnsupportedEncodingException; import java.security.InvalidKeyException; import java.security.NoSuchAlgorithmException; import java.security.SecureRandom; import javax.crypto.*; import javax.crypto.spec.SecretKeySpec; /** * @author :x ...
import java.io.IOException; import java.util.Map; public interface CacheManager { static final String lbsNameCache= "lbsNameCache"; Object put(Object key, Object value); Object get(Object key); void remove(Object key); void putAll(Map<Object, Object> ...
参考   http://www.mongodb.org/display/DOCS/Replica+Set+Tutorial     本实验三个节点,启动脚本如下   节点1     mkdir database\replset1 title: MongoDB replset1 Start by xiaofancn bin\mongod.exe --replSet group --port 27001 --rest --dbpath database\replset1     节点2     mkdir database\replset2 title: ...
      参考 http://www.javabloger.com/article/mongodb-cluster.html   我们实验有shard1,shard2,configserver,mongosRoute      Shard1启动脚本 mkdir db/shard1 bin/mongod --shardsvr --dbpath db/shard1 --port 9000 --httpinterface --bind_ip 0.0.0.0 --fork --logpath=log/shard1.log --rest       Shard2启 ...
参考文章     http://www.mongodb.org/display/DOCS/MapReduce http://www.rainsts.net/article.asp?id=1044 https://github.com/mongodb/mongo-java-driver/commit/fa003adc5db8a6c4efe0279c74973af15d99e6ed#diff-2     MapReduce是一个编程模型,封装了并行计算、容错、数据分布、负载均衡等细节问题。 输入是一个key-value对的集合,中间输出也是key-value对的集合,用户使用两个函 ...
参考 http://blog.csdn.net/liuzhenwen/article/details/3768766   注意:Entity中有个Transient标注的属性无法序列化到queue中,可以用一个DTO重新组装对象传送。   定我们的Queue文件adServerLog-service.xml   <?xml version="1.0" encoding="UTF-8"?> <server> <mbean code="org.jboss.mq.server.jmx.Que ...
import java.io.File; import java.net.UnknownHostException; import com.mongodb.DB; import com.mongodb.Mongo; import com.mongodb.MongoException; import com.mongodb.gridfs.GridFS; import com.mongodb.gridfs.GridFSDBFile; import com.mongodb.gridfs.GridFSInputFile; public class Show { pub ...
1、首先使用Eclipse的git插件把spring提供的示例下载下来   https://github.com/SpringSource/spring-data-document-examples.git   下载之后导入maven工程     2、首先看我们的domain定义,也就是entity。 org.springframework.data.mongodb.examples.hello.domain.Person     package org.springframework.data.mongodb.examples.hello.domain; i ...
Global site tag (gtag.js) - Google Analytics