wedb_embed 0.1.9

Embedded database engine providing Redis-like APIs, built on fjall / 嵌入式数据库引擎,提供类似 Redis 的接口,底层基于 fjall 开发
Documentation
1
2
3
4
5
6
7
8
9
10
pub use crate::error::ERR_WRONG_TYPE;

pub const DEFAULT_SUG_LIMIT: usize = 10;
pub const HNSW_VECTOR_FIELD_META_LEN: usize = 29;

pub const DEFAULT_STOP_WORDS: &[&str] = &[
  "a", "is", "the", "an", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into",
  "it", "no", "not", "of", "on", "or", "such", "that", "their", "then", "there", "these", "they",
  "this", "to", "was", "will", "with",
];