-
Notifications
You must be signed in to change notification settings - Fork 143
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
Clustering & Minor Patches in JS, Rust, & Java SDKs #503
Commits on Aug 23, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d68fb62 - Browse repository at this point
Copy the full SHA d68fb62View commit details
Commits on Sep 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f0c250e - Browse repository at this point
Copy the full SHA f0c250eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0f4c98c - Browse repository at this point
Copy the full SHA 0f4c98cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7416247 - Browse repository at this point
Copy the full SHA 7416247View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9c799e1 - Browse repository at this point
Copy the full SHA 9c799e1View commit details -
Configuration menu - View commit details
-
Copy full SHA for e35eab8 - Browse repository at this point
Copy the full SHA e35eab8View commit details -
Configuration menu - View commit details
-
Copy full SHA for db0f44d - Browse repository at this point
Copy the full SHA db0f44dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3af4801 - Browse repository at this point
Copy the full SHA 3af4801View commit details
Commits on Sep 9, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ce1af09 - Browse repository at this point
Copy the full SHA ce1af09View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d53d18 - Browse repository at this point
Copy the full SHA 9d53d18View commit details -
Configuration menu - View commit details
-
Copy full SHA for f12314c - Browse repository at this point
Copy the full SHA f12314cView commit details -
Configuration menu - View commit details
-
Copy full SHA for e448ce3 - Browse repository at this point
Copy the full SHA e448ce3View commit details
Commits on Sep 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1a6753b - Browse repository at this point
Copy the full SHA 1a6753bView commit details -
Configuration menu - View commit details
-
Copy full SHA for f1c158f - Browse repository at this point
Copy the full SHA f1c158fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 189bb0b - Browse repository at this point
Copy the full SHA 189bb0bView commit details
Commits on Oct 10, 2024
-
Fix: JavaScript Change the return value of index.count() to a number
The return value of index.count() was a boolean, so it was changed to a number.
Configuration menu - View commit details
-
Copy full SHA for 7425cd7 - Browse repository at this point
Copy the full SHA 7425cd7View commit details -
Configuration menu - View commit details
-
Copy full SHA for f315979 - Browse repository at this point
Copy the full SHA f315979View commit details -
Fix: Raise exceptions from
add()
in JS (#486)For example, if you try to add the same key, it aborts. ``` terminate called after throwing an instance of 'std::runtime_error' what(): Duplicate keys not allowed in high-level wrappers Aborted (core dumped) ``` Improved error handling to throw JavaScript exceptions.
Configuration menu - View commit details
-
Copy full SHA for d6fd1eb - Browse repository at this point
Copy the full SHA d6fd1ebView commit details
Commits on Oct 11, 2024
-
Fix: Reserve after deserialization in JS (#484)
I got an error when I loaded and searched with load() or view(). Code Example: ```js // Saved with `index.save('index.usearch');` in another script. index.load('index.usearch'); const results = index.search(new Float32Array([0.2, 0.6, 0.4]), 10); ```
Configuration menu - View commit details
-
Copy full SHA for 16dec63 - Browse repository at this point
Copy the full SHA 16dec63View commit details
Commits on Oct 14, 2024
-
Fix: Skip JS
view()
on Winodws (#504)The test itself succeeds, but fails with the following error when deleting the index file created by save() in afterEach(). ``` error: "EBUSY: resource busy or locked, unlink 'C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\usearch.test.index'" ``` Since it is only in Winodws that it fails, we will skip it on Winodws for now. We will continue to investigate the solution.
Configuration menu - View commit details
-
Copy full SHA for 08c835d - Browse repository at this point
Copy the full SHA 08c835dView commit details
Commits on Oct 16, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9969f10 - Browse repository at this point
Copy the full SHA 9969f10View commit details -
Merge pull request #499 from CCnut/main-dev
Add Rust and Android CI build
Configuration menu - View commit details
-
Copy full SHA for 8fa3090 - Browse repository at this point
Copy the full SHA 8fa3090View commit details
Commits on Oct 22, 2024
-
Fix: Remove from a read-only index (#506)
The index read by `view()` is read-only. When I did a `remove()` on that index, it crashed. --------- Co-authored-by: Ash Vardanian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c27c99d - Browse repository at this point
Copy the full SHA c27c99dView commit details -
Add: Metadata for observability (#508)
--------- Co-authored-by: Mikhail Bautin <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 113a786 - Browse repository at this point
Copy the full SHA 113a786View commit details
Commits on Oct 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for aa2ddd7 - Browse repository at this point
Copy the full SHA aa2ddd7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 19a9d0b - Browse repository at this point
Copy the full SHA 19a9d0bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 730815f - Browse repository at this point
Copy the full SHA 730815fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 64142ee - Browse repository at this point
Copy the full SHA 64142eeView commit details
Commits on Oct 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 295b3d6 - Browse repository at this point
Copy the full SHA 295b3d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0dac789 - Browse repository at this point
Copy the full SHA 0dac789View commit details -
Improve: Clustering benchmarks
Remove `fire` dependency and document usage.
Configuration menu - View commit details
-
Copy full SHA for e057feb - Browse repository at this point
Copy the full SHA e057febView commit details -
Configuration menu - View commit details
-
Copy full SHA for 91c0bcb - Browse repository at this point
Copy the full SHA 91c0bcbView commit details -
Configuration menu - View commit details
-
Copy full SHA for f9fc617 - Browse repository at this point
Copy the full SHA f9fc617View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3f5a4ef - Browse repository at this point
Copy the full SHA 3f5a4efView commit details -
Without this the the Java build on Ubuntu with GCC fails.
Configuration menu - View commit details
-
Copy full SHA for f80ded9 - Browse repository at this point
Copy the full SHA f80ded9View commit details -
Configuration menu - View commit details
-
Copy full SHA for fbcab99 - Browse repository at this point
Copy the full SHA fbcab99View commit details -
The `<numeric>` header that contains that function brings up to 2K lines of templates.
Configuration menu - View commit details
-
Copy full SHA for e4afcf3 - Browse repository at this point
Copy the full SHA e4afcf3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6f132bb - Browse repository at this point
Copy the full SHA 6f132bbView commit details -
Fix: Generating 64-bit unsigned seeds
The previous solution failed on Windows with: > ValueError: high is out of bounds for int32
Configuration menu - View commit details
-
Copy full SHA for 512c6aa - Browse repository at this point
Copy the full SHA 512c6aaView commit details