dumbo_rocks_db 0.2.1

RocksDB数据库操作模块,提供类型安全的列族(Column Family)抽象。
Documentation
1
2
3
4
5
6
7
8
pub fn generate_timestamp_index(
    config_id: &str,
    timestamp: chrono::DateTime<chrono::Utc>,
) -> String {
    let max_timestamp = i64::MAX;
    let inverted_timestamp = max_timestamp - timestamp.timestamp();
    format!("{:020}:{}", inverted_timestamp, config_id)
}