Updated Filer Stores (markdown)

Chris Lu 2021-10-04 03:31:51 -07:00
parent 2edc22d0a5
commit 2b2f0e715e

@ -11,7 +11,8 @@ The Filer Store persists all file metadata and directory information.
| RocksDB | O(logN)| unlimited | Local, Very Fast | | Native| | Default, fairly scalable |
| Sqlite | O(logN)| unlimited | Local, Very Fast |Atomic| Yes | Yes | Default, fairly scalable, Stream backup |
| 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 |
| Redis2 | O(1) | limited | Local or Distributed, Fastest ||Native| | one directory's children are stored in one key~value entry |
| Redis3 | O(1) | unlimited | Local or Distributed, Fastest ||Native| | one directory's children are stored in one list |
| Cassandra | O(logN)| unlimited | Local or Distributed, Very Fast||Native| | |
| MySql | O(logN)| unlimited | Local or Distributed, Fast |Atomic| Yes| | Easy to manage |
| MySql2 | O(logN)| unlimited | Local or Distributed, Fast |Atomic| Yes| Yes| Easy to manage |