You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**WARNING:** Please take into accout that `NULL` and `NOT_NULL`
648
+
operators check attribute presence in a document, not value.
649
+
So if attribute `postcode`'s value is `NULL`, `NULL` operator will return false
650
+
because attribute exists even if has `NULL` value.
651
+
645
652
### Consistent Reads
646
653
647
654
Querying supports consistent reading. By default, DynamoDB reads are eventually consistent: if you do a write and then a read immediately afterwards, the results of the previous write may not be reflected. If you need to do a consistent read (that is, you need to read the results of a write immediately) you can do so, but keep in mind that consistent reads are twice as expensive as regular reads for DynamoDB.
0 commit comments