Conversation
deven96
force-pushed
the
wasm-db
branch
2 times, most recently
from
July 20, 2026 00:57
e94e804 to
e00cec6
Compare
Test Results125 tests 125 ✅ 5m 47s ⏱️ Results for commit 079f906. ♻️ This comment has been updated with latest results. |
Benchmark Results |
deven96
force-pushed
the
wasm-db
branch
4 times, most recently
from
July 20, 2026 19:26
b2985fd to
9db6465
Compare
- Make db crate WASM-compatible via conditional compilation - Add wasm-db crate with 9 protobuf API methods - Implement snapshot export/import using MessagePack - Add comprehensive Node.js test suite (9 tests) - Integrate WASM tests into CI with JUnit output - Add WASM build to GitHub release workflow - Sequential execution only (no parallelism in browser) - SIMD support via pulp for 2-4x speedup - Performance: 125k inserts/sec, 2-5ms similarity search
Iamdavidonuh
approved these changes
Jul 20, 2026
jimezesinachi
requested changes
Jul 21, 2026
jimezesinachi
left a comment
Collaborator
There was a problem hiding this comment.
Mostly, LGTM, just a minor rewrite to prevent future drift between the operations.rs and handler.rs impls
deven96
force-pushed
the
wasm-db
branch
3 times, most recently
from
July 23, 2026 14:29
d588a98 to
68cd69c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Make db crate compile for wasm32-unknown-unknown target. Sequential fallbacks for rayon parallel iterators on WASM. SIMD via pulp for 2-4x vector operation speedup.
Create wasm-db crate with protobuf bytes API.
Full CRUD + similarity search + schemas + metadata.
Add WASM build to release workflow.