Creating a caching table
First time using StructNoSQL ?
Consider first creating a DynamoDBBasicTable
, and after having understood the basics, migrate to using a
DynamoDBCachingTable
. Follow the tutorial at Creating your first table
When creating your table client class, instead of inheriting from BasicTable, simply change it to CachingTable.
All operations work's the with the same functions and parameters for the DynamoDBCachingTable
as for the DynamoDBBasicTable
.
Your table model will also not requires any modifications when moving to a DynamoDBCachingTable
.
Turn this :
To this :
You know