From 1448bf7e026b300504059d97ee1d0e52bc744862 Mon Sep 17 00:00:00 2001 From: Ryo Kanbayashi Date: Fri, 23 Aug 2024 22:08:17 +0900 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 048a0c05..96ce0772 100644 --- a/README.md +++ b/README.md @@ -83,12 +83,12 @@ - [x] Index - [x] Hash Index - Hash index can be used only equal(=) operator is specified to index having columns - - Access is serialized (not parallel) + - Thread safe but serialized (not supported concurrent access) - [x] SkipList Index - - Alternative of B-tree Index - - Parallel accesible - - [ ] B-tree Index - - Implementing now with [bltree-go-for-embedding](https://github.com/ryogrid/bltree-go-for-embedding) lib + - Concurrent access is supported + - [x] B-tree Index [^1] + - Using [bltree-go-for-embedding](https://github.com/ryogrid/bltree-go-for-embedding) lib + - Concurrent access is supported - [ ] Logging And Recovery Of Index Data - [ ] JOIN - [x] INNER JOIN (Hash Join, Index Join, Nested Loop Join)