Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
帮助
返回水杉在线
登录水杉在线
登录水杉码园
building_data_management_systems.Xuanzhou.2024Fall.DaSE
/
LevelDB-course-Lab
Seguir
23
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
小组成员:10215300402-朱维清 & 10222140408 谷杰
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
72
Commits
1
Rama
1.7 MiB
Árbol:
d84c825a70
main
Ramas
Etiquetas
${ item.name }
Crear rama
${ searchTerm }
desde 'd84c825a70'
${ noResults }
LevelDB-course-Lab
/
.gitignore
8 líneas
61 B
Original
Vista normal
Histórico
add .gitignore; support for building on a few BSD variants
hace 12 años
Added bloom filter support. In particular, we add a new FilterPolicy class. An instance of this class can be supplied in Options when opening a database. If supplied, the instance is used to generate summaries of keys (e.g., a bloom filter) which are placed in sstables. These summaries are consulted by DB::Get() so we can avoid reading sstable blocks that are guaranteed to not contain the key we are looking for. This change provides one implementation of FilterPolicy based on bloom filters. Other changes: - Updated version number to 1.4. - Some build tweaks. - C binding for CompactRange. - A few more benchmarks: deleteseq, deleterandom, readmissing, seekrandom. - Minor .gitignore update.
hace 12 años
add .gitignore; support for building on a few BSD variants
hace 12 años
build_config.mk
*.a
*.o
*.dylib*
*.so
*.so.*
*_test
db_bench