Testing lots of things

This commit is contained in:
2026-06-17 14:41:36 +10:00
parent 400fb5a8cb
commit dfebd0576e
29 changed files with 1826 additions and 927 deletions

15
bloom-filter.md Normal file
View File

@@ -0,0 +1,15 @@
# Bloom filter challenges
## Incremental filter
If we can make the filter incremental instead of needing to be recomputed, we can keep the filter in the cache and just update it instead of deleting it when we get an updated event.
It should also allow us to have the filter passed by the client, apply the server's items to it, and figure out which values its missimg.
## Oversizing filter
If we can oversize the filter, we can work around the above challenge and just oversize them instead.
## Filter metadata
Store the item count in the filter object so we can do a quick match with that?