mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Updated Filer Stores (markdown)
parent
693b6cdad1
commit
964c253255
|
@ -8,6 +8,7 @@ The Filer Store persists all file metadata and directory information.
|
||||||
| leveldb | O(logN)| unlimited | Local, Very Fast | | Yes| Default, fairly scalable |
|
| leveldb | O(logN)| unlimited | Local, Very Fast | | Yes| Default, fairly scalable |
|
||||||
| RocksDB | O(logN)| unlimited | Local, Very Fast | | Native| Default, fairly scalable |
|
| RocksDB | O(logN)| unlimited | Local, Very Fast | | Native| Default, fairly scalable |
|
||||||
| leveldb2 | O(logN)| unlimited | Local, Very Fast, faster than leveldb | | Yes| Similar to leveldb, part of the lookup key is 128bit MD5 instead of the long full file path |
|
| leveldb2 | O(logN)| unlimited | Local, Very Fast, faster than leveldb | | Yes| Similar to leveldb, part of the lookup key is 128bit MD5 instead of the long full file path |
|
||||||
|
| leveldb3 | O(logN)| unlimited | Local, Very Fast | | Yes| Similar to leveldb2, separate leveldb instance for each bucket |
|
||||||
| Mongodb | O(logN)| unlimited | Local or Distributed, Fast | | Yes| Easy to manage |
|
| Mongodb | O(logN)| unlimited | Local or Distributed, Fast | | Yes| Easy to manage |
|
||||||
| Redis | O(1) | limited | Local or Distributed, Fastest ||Native| one directory's sub file names are stored in one key~value entry |
|
| Redis | O(1) | limited | Local or Distributed, Fastest ||Native| one directory's sub file names are stored in one key~value entry |
|
||||||
| Cassandra | O(logN)| unlimited | Local or Distributed, Very Fast||Native| |
|
| Cassandra | O(logN)| unlimited | Local or Distributed, Very Fast||Native| |
|
||||||
|
|
Loading…
Reference in a new issue