Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
lamba92 authored Dec 12, 2024
1 parent c730258 commit 3efd14a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ There are three main implementations of the `DataStore` interface:
- **MVStore**: For JVM-based applications, using the [H2 Database Engine](https://www.h2database.com/html/main.html) MVStore.
- JVM
- **LevelDB**: For all Kotlin platforms (including JVM), using [LevelDB](https://github.com/google/leveldb) key-value store.
- JVM
- JVM:
- Windows: arm64, x64
- Linux: arm64, x64
- macOs: arm64, x64
- JS
- Native (Linux, macOS, Windows, iOS, Android, Android native, watchOS, tvOS)
- **Browser**: For browser-based applications, using the browser's [IndexedDB](https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API) storage.
Expand Down Expand Up @@ -266,4 +269,4 @@ suspend fun main() {
println("Search Results: $results")
documentStore.close()
}
```
```

0 comments on commit 3efd14a

Please sign in to comment.