Skip to content

Commit 01c5a4f

Browse files
authored
Update architecture.md
1 parent 7464a56 commit 01c5a4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/doc/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,5 @@ The answer is “no”. At some point, when runtime will detect that heap is ful
7171

7272
Therefore data commits (saving data to physical storage) are managed by script runtime automatically: at GC time and when storage gets closed. Script cannot prevent GC to happen nor it cannot force actual GC so data will be auto-commited. But if needed (e.g. after critical data changes), we can call synchronous ```storage.commit()``` method to force changed data to be saved at particular moment of time.
7373

74-
Such mechanism allows script to handle potentially large data sets: maximum number of persistent entities is 2**32 and each persistent item can be a string or a byte array (a.k.a. blob, ArrayBuffer) of size 2**32 bytes.
74+
Such mechanism allows script to handle potentially large data sets: maximum number of persistent entities is 2^32 and each persistent item can be a string or a byte array (a.k.a. blob, ArrayBuffer) of size 2^32 bytes.
7575

0 commit comments

Comments
 (0)