N. D.
N. D.
In that case I guess you have 2 options: `process.env.NODE_ENV === "test"` equals true so it tries to connect to the local aws, Or your access keys are incorrect. You...
Well then, the problem is in your docker configuration. Perhaps you should ask their community. As you know the docker container runs in sandboxed environment, which means it does not...
@ccverak there was an issue about that: #171
@avtaniket you should provide more information about the table schema. This is from the documentation of Vogels: `DynamoDB limits the number of items you can get to 100 or 1MB...
Please double check that you don't have any NULL or empty values in you `keyArr`. Also that every element in the array has type of integer. You know that in...
You can define that ```isDeleted``` as a secondary index. http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/SecondaryIndexes.html
Why not putting the followers in another table with hash/range key?
oh, nvm. You may use the `projection` attribute in the index (so when you search by that index you will allays get the desired values) [like this example](https://github.com/ryanfitz/vogels#global-indexes) Or you...
I wonder how is this going to work in production environment with a lot of records in the database. If this approach still consumes a lot of capacities you can...
**Option 1:** Create the tables at the beginning of the tests and delete the whole table at the end the tests. If the table is already created it wouldn't overwrite...