• 2013-01-13

    SSDB is now available on github

    Views: 13111 | No Comments

    It seems github is more powerfull and more popular than Google Code, so I migrated SSDB from Google Code to github.

    Link: https://github.com/ideawu/ssdb

    Posted by ideawu at 2013-01-13 21:17:34 Tags: ,
  • 2013-01-06

    SSDB 1.2.0 with replication feature is released!

    Views: 13432 | No Comments

    I am proud to announce SSDB 1.2.0 is released! SSDB 1.2.0 is a major step of SSDB, the LevelDB server with multi data types.

    In this version, the important feature – Replication(master-slave) is supported. Replication is the most important feature of storage server in production enviroment. LevelDB has the ability to handle thousands of GBs of data on one common used computer, and SSDB do the networking, backup, replication stuffs.

    SSDB 1.2.0 is a beta version, the 2.x version will be stable.

    Download SSDB 1.2.0: http://code.google.com/p/zdb/downloads/list

    Posted by ideawu at 2013-01-06 15:27:13 Tags: ,
  • 2012-12-27

    SSDB has made a big progress!

    Views: 13184 | No Comments

    SSDB v1.1.0 is released! This version added the Online Backup feature, which allows to backup a SSDB instance without stopping service.

    Quick Start

    ./tools/ssdb-dump 127.0.0.1 8888 backup_dir
    

    A copy of SSDB instance(it is also the leveldb database) will be saved in a new created directory backup_dir.

    Recover

    Transfer the directory backup_dir to the server on which ssdb-server runs, then edit ssdb.conf to use backup_dir, restart ssdb-server.

    Next Step

    SSDB is now a productional storage server! The next feature that is planning to added is Replication(Master-Slave architecture). Replication is the base of distributed system.

    SSDB Project: https://code.google.com/p/zdb/

    Posted by ideawu at 2012-12-27 00:00:18 Tags: ,
  • 2012-12-18

    SSDB v1.0.1 supports more commands

    Views: 12764 | No Comments

    SSDB version 1.0.1 is released. In this version, more commands are supported, these commands are:

    keys, zkeys, hkeys, incr, decr, zincr, zdecr, hincr, hdecr
    

    SSDB is used as cache server on www.udpwork.com, it works very well! So, don’t doubt to use SSDB for your project.

    Posted by ideawu at 2012-12-18 00:36:19 Tags: ,
  • 2012-12-12

    SSDB – A leveldb server with zset data type

    Views: 20555 | No Comments

    The Google leveldb is just a c++ library, cannot be directly used by PHP/Java/Python. As it is a library, data can’t be accessed across multi machines(not even multiprocesses in one machine).

    SSDB(or zdb) is a network server that wrapping leveldb library, more important, besides key-value data type, SSDB supports zset(sorted set) and hash data type. Zset is the most valuable data type that widely used with Redis, to describe business abstracts such as inbox/outbox of a messaging system, posts list of a news site, etc.

    SSDB’s client APIs currently including PHP, Python, Cpy, and more can be added easily.

    Here is a list of SSDB features:

    • Network wrapping of Google leveldb, client-server supports
    • Persistent key-value, key-zset, key-hash storage
    • Very fast(benchmark)

    SSDB project: http://code.google.com/p/zdb/

    Posted by ideawu at 2012-12-12 11:15:58 Tags: ,
|<<<1>>>| 1/1 Pages, 5 Results.