Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.Net: DuckDBMemoryStore RemoveBatchAsync method performance improveme…
…nt (#7252) ### Motivation and Context To optimize performance by reducing the number of database calls during batch deletions in DuckDBMemoryStore. ### Description The updated **RemoveBatchAsync** method now executes a single SQL DELETE query to remove multiple keys at once, replacing the previous approach of executing individual delete queries for each key. ### Contribution Checklist <!-- Before submitting this PR, please make sure: --> - [ ] The code builds clean without any errors or warnings - [ ] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [ ] All unit tests pass, and existing test is okay for this change - [ ] I didn't break anyone 😄
- Loading branch information