chore(release): 2.14.1

- Fix verb retrieval in FileSystemStorage adapter
- Add safety warnings for large datasets
- Document performance considerations for count methods
This commit is contained in:
David Snelling 2025-09-02 14:56:16 -07:00
parent e5c6b0afe7
commit 7c46879334
4 changed files with 14 additions and 3 deletions

View file

@ -147,6 +147,8 @@ export abstract class BaseStorageAdapter implements StorageAdapter {
/**
* Count total number of nouns (optional)
* WARNING: Implementations should be efficient for large datasets.
* Consider caching counts or using database COUNT operations.
* @param filter Optional filter criteria
* @returns Promise that resolves to the count
*/
@ -154,6 +156,8 @@ export abstract class BaseStorageAdapter implements StorageAdapter {
/**
* Count total number of verbs (optional)
* WARNING: Implementations should be efficient for large datasets.
* Consider caching counts or using database COUNT operations.
* @param filter Optional filter criteria
* @returns Promise that resolves to the count
*/