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:
parent
e5c6b0afe7
commit
7c46879334
4 changed files with 14 additions and 3 deletions
|
|
@ -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
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue