Quantcast
Channel: CodeSection,代码区,数据库(综合) - CodeSec
Browsing all 6262 articles
Browse latest View live

Image may be NSFW.
Clik here to view.

Redis 单节点安装

Redisis an open source (BSD licensed), in-memory data structure store, used as database, cache and message broker. It supports data structures such as strings, hashes, lists, sets, sorted sets with...

View Article


Image may be NSFW.
Clik here to view.

Effective Bulk Data Import into Neo4j

By Michael Hunger & Mark Needham , Neo4j Developer Relations & Engineering | August 3, 2016 Mark Needham:Today we’re going to look at how to import a dataset fromStack Overflow intoNeo4j:...

View Article


Scala, Couchbase, Spark and Akka-http: A combinatory tutorial for starters

Couchbase and Apache Spark are best so far, for the in-memory computation . I am using akka-http because its new in the business. If you are not a big fan of akka-http and don’t think it is yet ready...

View Article

Feature: Mango Query

This is the fourth in a series of blog posts introducing the Apache CouchDB 2.0 release. Read partsone,two, andthree in the series. Two years ago, Cloudant developed a declarative style syntax for...

View Article

Image may be NSFW.
Clik here to view.

Hadoop Project Commercial Support Tracker July 2016

There are now15 projects supported by all 5distributors Itrack, and several have had new releases since April. Kafka is the newest addition, and I believe the remaining 4-supporter offerings, Mahout...

View Article


Image may be NSFW.
Clik here to view.

Redis 数据类型

Redis数据类型 官网说明文档:http://www.redis.io/topics/data-types-intro Redis keys Redis keys are binary safe, this means that you can use any binary sequence as a key, from a string like "foo" to the content of...

View Article

Image may be NSFW.
Clik here to view.

深入浅出Cache

章节 ① 什么是Cache? Cache的目标? ② Caching住哪些内容? ③ 我们想要的Cache产品 ④ Cache使用方式 ⑤ 对于总体系统的提高 ⑥ 关于Sharding ⑦ Cache痛点和关注点 ⑧ 我们用的Cache的产品 ⑨ 我们的一些实践 ① 什么是Cache? Cache的目标? 在说这个之前我们先看下典型Web 2.0的一些架构演变(这里不用”演进”)....

View Article

Streaming Data: How to Move from State to Flow Whiteboard Walkthrough (Part 2...

In this week’s Whiteboard Walkthrough Part II, Ted Dunning, Chief Application Architect at MapR, talks about the design freedom gained by adopting a micro-services architecture based on streaming data....

View Article


Image may be NSFW.
Clik here to view.

redis学习之redis3.0.x集群搭建

写在前面 2015年2月,Redis3.0.0 发布,redis3.0版本之后支持Cluster,关于redis集群的介绍,了解请看 redis中文简介 。...

View Article


Image may be NSFW.
Clik here to view.

基于 Fetch 的 HTTP 透明代理

本文从属于笔者的 Web前端中DOM系列文章 . 笔者在 浏览器跨域方法与基于Fetch的Web请求最佳实践 一文中介绍了浏览器跨域的基本知识与Fetch的基本使用,在这里要提醒两个前文未提到的点,一个是根据 附带凭证信息的请求 这里描述的,当你为了配置在CORS请求中附带Cookie等信息时,来自于服务器的响应中的Access-Control-Allow-Origin不可以再被设置为 *...

View Article

Image may be NSFW.
Clik here to view.

Hadoop starts to trumpet way through UK public sector

It was named after a child’s toy, when software developer Doug Cutting borrowed the word from his son for “a way to take a bunch of computers and make them appear as one computer to software”,...

View Article

Multi-node Clusters with Cloudera QuickStart for Docker

Getting hands-on with a multi-node cluster for self-learning or testing is even easier, now. Last December, we introduced the Cloudera QuickStart Docker image to make it easier than ever before to...

View Article

mongo基本操作

mongodb是面向文档的数据库,没有模式,文档的键不会事先定义,也不会固定不变。由于没有模式需要更该,通常不需要迁移大量的数据。优点1、容易扩展2、丰富的功能- 索引- 存储javascript- 聚合- 固定集合- 文件存储3、不牺牲速度- 使用MongoDB传输协议- 预分配数据文件- 默认的存储引擎中使用了内存映射-...

View Article


redis基础技术笔记总结

redis 列表list 与集合 set的区别list 可以有重复的数据set的数值都是唯一的1、启动redis服务cd redis 进入redis 安装目录reids-server.exe redis.window.conf2、链接redis客户端redis-cli.exe -h 127.0.0.1 -p 63793、redis 键key命令set key_name key_value 建key...

View Article

Image may be NSFW.
Clik here to view.

redis数据类型以及常用的命令

redis数据类型以及常用的命令一、Stringredis中没有使用C语言的字符串表示,而是自定义一个数据结构叫SDS(simple dynamic string)即简单动态字符串。打开下载的redis源码包,找到src下的sds.h文件查看sds源码:struct sdshdr { //字符串长度 unsigned int len; //buf数组中未使用的字节数量 unsigned int...

View Article


主从复制

主从复制 步骤如下: 主服务器:从服务器ip地址分别为[python] view plain copy192.168.1.87、192.168.1.89 1、修改主服务器master:[python] view plain copyvi /etc/my.cnf[mysqld]log-bin=mysql-bin #[必须]启用二进制日志server-id=87...

View Article

Image may be NSFW.
Clik here to view.

SQL――总结

一、语言的分类1、DDL 数据库定义语言 影响数据结构的,增删改查库或表。2、DML 数据库操作语言 操作数据,对表中数据的增删改查。3、DCL 数据库控制语言 无。创建用户,管理用户权限,事务控制。非标准分类:DQL 数据库查询语言 把对数据的增删改查中的查单提出来。另外一种分类:DDL (数据定义语言)数据定义语言 - Data Definition...

View Article


Image may be NSFW.
Clik here to view.

数据库知识学习笔记

这是个人学习笔记。内容比较多而且杂,不是适合所有人看。只是个人学习的总结 1. 数据库优化的一些手段 尽量避免null类型的列 使得索引、索引统计、值比较都比较复杂、使用更多的存储空间、null的列为索引时,每个索引记录需要额外一个字节、 datetime timestamp timestamp只使用datetime一半的存储空间。并且会根据时区变化。 整数类型...

View Article

Image may be NSFW.
Clik here to view.

学生调试问题总结

三天,从设计到调试,在此特别感谢陈丹师父,要是没有丹姐的鼓励,我是怎么也不会相信我建了一个月的项目是用三天的时间设计调试完成的。 学生三部曲: 敲学生前:大致了解学生的各个模块所需要的功能,各个模块之间的联系。 用两个思维导图,清楚各个模块之间的联系: 敲学生中:我是用了晓慧的建议,敲一个窗体调试一个窗体,这样走起来比较有条序,不会乱。 敲学生后:总结问题和知识点。(外加优化) 问题总结: 问题一:...

View Article

Image may be NSFW.
Clik here to view.

Hive入门培训

Hive数据类型 基础数据类型: TINYINT,SMALLINT,INT,BIGINT,BOOLEAN,FLOAT,DOUBLE,STRING,BINARY,TIMESTAMP,DECIMAL,CHAR,VARCHAR,DATE。 复杂数据类型:...

View Article
Browsing all 6262 articles
Browse latest View live