Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add bulk key existence checking #25

Merged
merged 5 commits into from
Oct 20, 2023
Merged

Conversation

dannynorth
Copy link
Contributor

When dealing with importing large amounts of data, it's helpful to be able to preemptively check for the existence of multiple keys before beginning importation.

This adds a single method to StorageEngine: func keysExist(_ keys: [CacheKey]) async -> [CacheKey].

A default implementation does the sensible thing (retrieve allKeys() and then filter the parameter based on that), but SQLiteStorageEngine overrides it for storage-specific implementation details, to avoid loading every single key into memory.

This patch also contains other minor related improvements (documentation, performance improvements, etc).

Every usage of `concatenatedPath(key:)` was passing in the `.value` of a `CacheKey`. This introduces the potential for mis-use, if one callsite were to accidentally pass in the `.rawValue` instead.

This can be mitigated by passing the `CacheKey` itself into the method, and then only having a single point of failure. This simplifies usage, because the caller no longer needs to know the specifics of how the URL is constructed.
The prior implementation was an `O(n)` algorithm, as it required loading every single `CacheKey` from disk, and then doing a linear search through the resulting array for the proper key.

This can be improved to `O(1)` by bypassing that unnecessary work and looking for the key directly.
Adding default implementations for these methods makes `StorageEngine` adoption simpler.

Also, correct a typo in documentation.
Add a method to check the existence of multiple keys simultaneously. This allows for more performant checking of multiple keys, instead of iteratively calling `storage.keyExists(_:)`
Copy link
Owner

@mergesort mergesort left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks great, thank you so much for the pull request Danny! I just want to think/talk through this one small question, but will be happy to merge in afterwards. 🙂

Without a default implementation, new implementations are required to implement this, encouraging better performance than this O(n) implementation
@mergesort mergesort merged commit b955bce into mergesort:main Oct 20, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants