
分布式存储
jxluoix
能够自己独立开发中小型的软件系统;
对工作态度认真、执着、诚恳;勇于专研、探索、创新;
接受新事物快、见识宽广.
展开
-
Ceph 安装
http://www.linuxidc.com/Linux/2013-05/85210.htm http://www.cnblogs.com/javawebsoa/archive/2013/05/31/3111541.html http://www.cnblogs.com/AlfredChen/p/3897015.html http://blog.chinaunix.net/uid...原创 2016-09-25 00:03:12 · 146 阅读 · 0 评论 -
分布式系统
Lamport’s “Time, Clocks and the Ordering of Events in a Distributed System” (1978) http://www.ics.uci.edu/~cs230/reading/time.pdf 在Lamport’s “Time, Clocks and the Ordering of Events in ...原创 2016-09-26 00:02:24 · 108 阅读 · 0 评论 -
Redis命令整理
Redis 目录 EXPIRE、timeout、TTL(time to live)区别 EXPIRE 过期时间 timeout 超时时间 TTL 生存时间 其实都指的是过期时间。 命令 Redis提供了大量的命令操作。目前总共约197个命令。 APPEND 追加操作。如果key存在并且是个字符串,该命令操作在后面进行追加;如果key不存在,则会先创建这个ke...2016-10-08 18:09:32 · 114 阅读 · 0 评论 -
事务属性之隔离性
事务属性之隔离性 目录 并发控制 隔离处理和保证相关操作的正确性是数据库管理系统并发控制中必须涵盖的基本机制。这种机制在数据库和存储引擎中大量使用以保证并发事务的正确执行。 两阶段锁是数据库管理系统中最常用的事务并发控制方法。用于提供可串行和可恢复性质,以保证正确性。为了访问数据库对象,事务先要获得该对象的锁。这依赖于访问操作的类型(如读取或写入对象)和要获取的锁类型,...2016-10-10 23:46:17 · 113 阅读 · 0 评论 -
RADOS: A Scalable, Reliable Storage Service for Petabyte-scale Storage Clusters
RADOS: A Scalable, Reliable Storage Service for Petabyte-scale Storage Clusters http://ceph.com/papers/weil-rados-pdsw07.pdf 写道 Brick and object-based storage architectures have emergedas a me...2016-12-13 13:59:36 · 210 阅读 · 0 评论 -
Ceph 文件存储、对象存储、内存存储、KV存储支持:ObjectStore::create
ObjectStore *ObjectStore::create(CephContext *cct, const string& type, const string& data, const string& journal, osflagbits_t flags) { if (type == "fi...2017-06-03 19:06:17 · 469 阅读 · 0 评论 -
RLP
RLP Recursive Length Prefix RLP元素: item,list 长度编码 数据编码 数据编码和长度编码采用的是相同的编码规则。 编码规则: -> | | | ()+ -> -128, 1-127 ...2018-04-05 14:14:46 · 328 阅读 · 0 评论