NoSQL
KeepLearningBigData
Apache CarbonDarta PMC;
Apache Spark、Alluxio、KubeRay、SparkBWA等项目的contributor
展开
-
举例说明:Hadoop vs. NoSql vs. Sql vs. NewSql
尽管层次数据库如今在大型机上依然被广泛使用,但关系数据库(RDBMS)(SQL)已经占领了数据库市场,并且表现的相当优异。我们存的钱不会跑到别人的账户,我们预定机票可以确保我们在飞机上有一个专属的座位,而且我们也不会因为没有做过的事而受到责备等等。关系数据库的数据完整性是因为它遵循了ACID(原子性,一致性,独立性以及持久性)原则。关系数据库技术可追溯到上世纪70年代。那么,现在有什么变化呢?转载 2015-08-13 09:23:15 · 1147 阅读 · 0 评论 -
Redis学习3之单节点上redis集群搭建和使用
单节点上redis集群搭建和使用: 环境:ubuntu14.04 redis-3.0.3步骤 1.下载解压编译等请见:http://blog.csdn.net/xubo245/article/details/48318735 很简单,只是make需要点时间。2.进入redis安装目录,我的安装在~/cloud下,建立多个文件夹cd ~/cloud/redis-3.0.3mkdir clus原创 2015-09-10 21:40:13 · 2958 阅读 · 1 评论 -
Redis学习4之redis单节点常用指令总结
0.环境安装 http://blog.csdn.net/xubo245/article/details/483187351.启动: 一个终端运行:redis-server另一个终端运行:redis-cli在redis-cli执行相关操作。2.数据库选择:默认数据库个数是16,编号从0-15,选择语句为:select 1执行:127.0.0.1:6379> select 1OK127.0.0.原创 2015-09-11 16:19:45 · 1420 阅读 · 0 评论 -
Redis学习5之redis-cli使用方法总结
1.redis-cli使用时各参数的含义和使用方法xubo@xubo:~/7000$ redis-cli --helpredis-cli 3.0.3Usage: redis-cli [OPTIONS] [cmd [arg [arg ...]]] -h <hostname> Server hostname (default: 127.0.0.1). -p <port>原创 2015-09-11 17:07:25 · 11942 阅读 · 1 评论 -
Redis学习6之redis多节点集群搭建和使用
redis多节点集群搭建和使用: 环境: ubuntu14.04 redis-3.0.4 七台物理机器 已经配置好ssh无密钥登录等基础条件1.下载安装编译wget http://download.redis.io/releases/redis-3.0.4.tar.gztar -zxvf redis-3.0.4.tar.gzcp -R redis-3.0.4 ~/cloudcd re原创 2015-09-11 20:52:36 · 4560 阅读 · 0 评论 -
Redis学习7之Predis连接redis过程和测试
Predis连接redis过程和测试: 1.下载地址:https://github.com/nrk/predis 可以git clone或者下载压缩包再解压到redis的clients文件夹下;2.安装apache和phpsudo apt-get install apache2 php53.在/var/www/html下新建test1.php,代码内容为:<?phpecho "hello w原创 2015-09-16 14:35:11 · 4364 阅读 · 1 评论 -
Redis学习8之predis错误显示
predis错误显示:$redis = new Predis\Client();try {echo $redis->get('xubo245');}catch(Exception $e){echo "Message:{$e->getMessage()}";}结果:Message:WRONGTYPE Operation against a key holding the w原创 2015-09-16 15:09:29 · 1315 阅读 · 0 评论 -
Redis学习9之在discuz的文件里加入redis数据库计访问数
在discuz的文件里加入redis数据库计访问数:<?php//require '/home/xubo/cloud/redis/clients/predis/autoload.php';require '/home/hadoop/cloud/redis-3.0.4/clients/predis/autoload.php';$redis = new Predis\Client();$redi原创 2015-09-16 16:22:02 · 1707 阅读 · 0 评论 -
Redis学习10之Jedis连接redis和使用
Jedis连接redis和使用:环境:jedis2.7.3redis 3.0.31.下载地址:https://github.com/xetorthio/jedis/releases可以git或者下载压缩包再解压,放在clients下,并将文件名改为jedis2.在jedis下编译:xubo@xubo:~/cloud/redis/clients/jedis原创 2015-09-17 16:08:11 · 1066 阅读 · 4 评论 -
Redis学习11之jedis问题之1--connect time out
jedis问题之1–connect time out: java redis 错误代码:xubo@xubo:~/cloud/redis/clients/jedis/target/classes$ java fornException in thread "main" redis.clients.jedis.exceptions.JedisConnectionException: java.ne原创 2015-09-17 20:41:27 · 5338 阅读 · 0 评论 -
Redis学习12之jedis的set时间测试
jedis的set时间测试:测试结果xubo@xubo:~/cloud/redis/clients/jedis/target/classes$ java fornhellojedishellojedis is start by jackxutest0--0:OK0--100000:OK0--200000:OK0--300000:OK0--400000:OK0--500000:OK原创 2015-09-17 21:19:37 · 2215 阅读 · 0 评论 -
Redis学习2之redis-benchmark使用方法总结
redis-benchmark使用方法总结:包括各个指令的详细解释。redis-3.0.41.redis-benchmark -help原创 2015-09-09 22:20:50 · 4845 阅读 · 0 评论 -
Redis学习1之redis单节点的安装和使用
环境:ubuntu14.04redis-3.0.4.tar.gzredis单节点的安装和使用:1.下载和解压wget http://download.redis.io/releases/redis-3.0.4.tar.gztar -zxvf redis-3.0.4.tar.gz2.放到指定的安装安装目录cp -R redis-3.0.4 ~/cloud原创 2015-09-09 17:39:33 · 2947 阅读 · 0 评论 -
java用jdbc连接neo4j
java用jdbc连接neo4j环境:客户端:window 8.1 eclipse marsjdk1.7服务端:ubuntu14.04neo4j 2.3.0带密码1.新建测试java文件neo4jJdbc.java:package n1;import java.sql.Connection;import java.sql.DriverManag原创 2015-12-01 15:17:08 · 13508 阅读 · 0 评论 -
neoclipse连接neo4j
Neoclipse: 一个eclipse的插件,用于管理neo4j数据库;1.下载安装:https://github.com/neo4j-contrib/neoclipse/downloads可以根据系统下载,我是win664位,所以下载:Neoclipse 1.9.5,Windows, for 64bit Java2.安装neo4j:本来安装的是neo4j原创 2015-11-23 20:36:04 · 5508 阅读 · 4 评论 -
neo4j的安装
环境: ubuntu14.04 neo4j-enterprise-1.9.4-unix.tar.gz neo4j-enterprise-2.3.0-M02同样可行 单机: 1.下载neo4j并解压:地址:http://neo4j.com/download/other-releases/2.运行启动neo4j:./neo4j-enterprise-1.9.4/bin/neo4j start如原创 2015-11-23 21:05:29 · 6143 阅读 · 0 评论 -
java连接neo4j
java连接neo4j,笔记:环境eclipse marsneo4j 2.3.01.环境配置好,neo4j安装在ubuntu14.04下eclipse安装在window8.1下2.将neo4j下的lib中的所有jar包导出再倒入到eclipse的项目下3.从neoj的github下载文件:https://github.com/neo4j原创 2015-11-24 21:46:58 · 4250 阅读 · 0 评论 -
免邮件验证下载neo4j企业版
免邮件验证下载neo4j企业版wget http://dist.neo4j.org/neo4j-enterprise-2.3.0-M02-unix.tar.gzwget http://dist.neo4j.org/neo4j-enterprise-2.3.0-M03-unix.tar.gzhttp://dist.neo4j.org/neo4j-enterprise-2.3.1-unix.tar.gz原创 2015-11-25 09:56:52 · 7687 阅读 · 0 评论 -
neo4j的examples之EmbeddedNeo4j.java
neo4j的examples之EmbeddedNeo4j.javaneo2.3.0 代码 下载:github/* * Licensed to Neo Technology under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additi原创 2015-11-25 10:27:40 · 1878 阅读 · 0 评论 -
neo4j的examples之EmbeddedNeo4jWithCustomLogging.java
neo4j的examples之EmbeddedNeo4jWithCustomLogging.java源码:/* * Licensed to Neo Technology under one or more contributor * license agreements. See the NOTICE file distributed with * this work for addition原创 2015-11-25 10:31:58 · 803 阅读 · 0 评论 -
neo4j的examples之EmbeddedNeo4jWithIndexing.java
neo4j的examples之EmbeddedNeo4jWithIndexing.java源码:/* * Licensed to Neo Technology under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional in原创 2015-11-25 10:45:56 · 1118 阅读 · 0 评论 -
neo4j的php客户端neoclient连接和使用
neo4j的php客户端neoclient连接和使用1.下载安装neo4j安装 neo4j 2.3.0M02 请见:http://blog.csdn.net/xubo245/article/details/50000967neoclient的下载:https://github.com/neoxygen/neo4j-neoclient安装:composer require原创 2015-11-26 11:04:28 · 3568 阅读 · 3 评论 -
php客户端neoclient遍历neo4j中的节点和关系及其属性等
neoclient遍历neo4j中的节点和关系及其属性等:环境: ubuntu 14.04 neo4j 2.3.0M02 企业版 neoclient php5.5.9 环境配置请见前一篇博文操作: 网络结构图:create (n0:Person { name: 'S' }),(n1:Person { name: 'A1' }),(n2:Person { name: 'A2' }),原创 2015-11-26 16:05:10 · 2709 阅读 · 0 评论 -
Redis学习13之predis的set速度测试
predis的set速度测试 redis、php、set:set/get 100000:start:1442496208.9368xubo0:0--time:0.00039482116699219sxubo10000:10000--time:0.49174094200134sxubo20000:20000--time:0.89022397994995sxubo30000:30000--t原创 2015-09-17 21:56:33 · 1170 阅读 · 0 评论