[Phase 1] Implement in-memory LinkStore backend (Rust) #31
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.
Summary
MemoryLinkStore- a high-performance in-memory storage backend for linksHashMapfor O(1) lookups by ID (millions of ops/sec demonstrated in benchmarks)Send + Syncboundscreate,get,find,update,delete,exists,countAnypattern)clear()andreset()methods for store managementCloses #9
Implementation Details
Files Added
rust/src/backends/mod.rs- Module declarations for backendsrust/src/backends/memory.rs- FullMemoryLinkStoreimplementation (~1100 lines)rust/examples/memory_store_benchmark.rs- Performance benchmark exampleTrait Modifications
increment()method toLinkTypetrait for safe ID generation usingwrapping_additer()signature with proper lifetime annotationsiter_all()a required method (removed default impl that caused lifetime issues)Architecture
Performance (from benchmark)
Test Plan
assert_send/assert_synctests)Run tests with:
Run benchmark with:
🤖 Generated with Claude Code