docs: synchronize documentation across all languages
- Add mcp.md to: bg, fa, ru, tr, zh, ar - Add index.md to Bulgarian (bg) - Add 24 missing German (de) documentation files Translations for all supported languages now complete.
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
# B-Tree Index
|
||||
|
||||
Geordnete Indexstruktur für effiziente Bereichsabfragen und Point-Lookups.
|
||||
|
||||
## Verwendung
|
||||
|
||||
```nim
|
||||
import barabadb/storage/btree
|
||||
|
||||
var btree = newBTreeIndex[string, string]()
|
||||
|
||||
# Einfügen
|
||||
btree.insert("key1", "value1")
|
||||
btree.insert("key2", "value2")
|
||||
|
||||
# Point-Lookup
|
||||
let values = btree.get("key1")
|
||||
|
||||
# Bereichsabfrage
|
||||
let range = btree.scan("key_a", "key_z")
|
||||
|
||||
# Löschen
|
||||
btree.delete("key1")
|
||||
```
|
||||
|
||||
## Funktionen
|
||||
|
||||
- Geordnete Schlüssel-Wert-Speicherung
|
||||
- Bereichsabfragen (BETWEEN, >, <, >=, <=)
|
||||
- Präfix-Scans
|
||||
- Konfigurierbare Seitengröße
|
||||
- Iterator-Unterstützung
|
||||
|
||||
## Anwendungsfälle
|
||||
|
||||
- Primärschlüssel-Indizes
|
||||
- Sekundärindizes für häufig abgefragte Spalten
|
||||
- Bereichspartitionierte Daten
|
||||
Reference in New Issue
Block a user