Specifically I\'m interested in using a DynamoDB table object from multiple threads (puts, gets, updates, etc). If that\'s not safe, then is there a safe way (i.e., maybe one ta
The boto library uses httplib which has never been, and to my knowledge still is not, thread-safe. The workaround is to make sure each thread creates its own connection to DynamoDB and you should be good.