Skip to content

Commit

Permalink
Merge pull request #54 from oliver-oloughlin/feature/large-collection…
Browse files Browse the repository at this point in the history
…-no-atomics

updated README
  • Loading branch information
oliver-oloughlin authored Aug 9, 2023
2 parents 78e901f + e1faec5 commit 63208e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ await db.users.deleteBySecondaryIndex("age", 24, {

## Large Collections

Large collections are distinct from standard collections or indexable collections in that they can hold values that exceed the size limit of values in Deno KV. Value types are limited to strings, arrays of number, boolean or LargeKvValue, and objects with LargeKvValue properties. All base collection methods are available for large collections. Document values are divided accross multiple Deno KV entries, which impacts the performance of most operations. Only use this collection type if you think your document values will exceed the approximately 65KB size limit.
Large collections are distinct from standard collections or indexable collections in that they can hold values that exceed the size limit of values in Deno KV. Value types are limited to being of LargeKvValue (string, basic objects and arrays). All base collection methods are available for large collections. Document values are divided accross multiple Deno KV entries, which impacts the performance of most operations. Only use this collection type if you think your document values will exceed the approximately 65KB size limit.

## Database Methods

Expand Down

0 comments on commit 63208e8

Please sign in to comment.