上一页 1 ··· 253 254 255 256 257 258 259 260 261 ··· 271 下一页
摘要: 其性能特点见:http://www.cnblogs.com/billyxp/p/3567421.html TokuDB 是一个高性能、支持事务处理的 MySQL 和 MariaDB 的存储引擎。TokuDB 的主要特点则是对高写压力的支持。 TokuDB 是一个高性能、支持事务处理的 MySQL 和 阅读全文
posted @ 2017-01-03 15:34 bonelee 阅读(1277) 评论(0) 推荐(0) 编辑
摘要: LSM树(Log-Structured Merge Tree)存储引擎 代表数据库:nessDB、leveldb、hbase等 核心思想的核心就是放弃部分读能力,换取写入的最大化能力。LSM Tree ,这个概念就是结构化合并树的意思,它的核心思路其实非常简单,就是假定内存足够大,因此不需要每次有数 阅读全文
posted @ 2017-01-03 14:31 bonelee 阅读(11792) 评论(2) 推荐(3) 编辑
摘要: 一致性哈希算法 摘自:http://blog.codinglabs.org/articles/consistent-hashing.html 算法简述 一致性哈希算法(Consistent Hashing)最早在论文《Consistent Hashing and Random Trees: Dist 阅读全文
posted @ 2017-01-03 12:11 bonelee 阅读(2232) 评论(0) 推荐(0) 编辑
摘要: 大数据日知录要点整理 大数据日知录要点整理 第0 章 当谈论大数据时我们在谈什么 1 NOSQL选型:kv-cassandra、dynamo,列式存储-HBase,图存储-Neo4j 社交网络数据存储适合用图数据库,而实时响应要求较高的场合适合Hbase等列式数据库。海量数据批处理任务,Hadoop 阅读全文
posted @ 2017-01-03 11:26 bonelee 阅读(997) 评论(0) 推荐(0) 编辑
摘要: ArangoDB介绍 ArangoDB是一个开源NoSQL数据库,官网:https://www.ArangoDB.org/ArangoDB支持灵活的数据模型,比如文档Document、图Graph以及键值对Key-Value存储。ArangoDB同时也是一个高性能的数据库,它使用类SQL查询或Jav 阅读全文
posted @ 2017-01-03 10:33 bonelee 阅读(9816) 评论(0) 推荐(0) 编辑
摘要: Given an array of integers, every element appears three times except for one. Find that single one. Note: Your algorithm should have a linear runtime 阅读全文
posted @ 2017-01-02 21:15 bonelee 阅读(205) 评论(0) 推荐(0) 编辑
摘要: Given a collection of distinct numbers, return all possible permutations. For example, [1,2,3] have the following permutations: class Solution(object) 阅读全文
posted @ 2017-01-02 20:23 bonelee 阅读(288) 评论(0) 推荐(0) 编辑
摘要: Given a singly linked list, group all odd nodes together followed by the even nodes. Please note here we are talking about the node number and not the 阅读全文
posted @ 2017-01-02 19:41 bonelee 阅读(285) 评论(0) 推荐(0) 编辑
摘要: Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file or memory buffer, or 阅读全文
posted @ 2017-01-02 17:23 bonelee 阅读(543) 评论(0) 推荐(0) 编辑
摘要: Features Column-oriented time-series database. Log-structured append-only B+tree with multiversion concurrency control. Crash safety. Fast aggregation 阅读全文
posted @ 2016-12-30 15:48 bonelee 阅读(760) 评论(0) 推荐(0) 编辑
上一页 1 ··· 253 254 255 256 257 258 259 260 261 ··· 271 下一页