2
我爲boto使用DynamoDb v2接口在我的表中創建計數器增量。 (我需要V2接口,因爲我將在稍後處理索引)使用Python中的boto.dynamodb2在AWS DynamoDb中增加計數器
不知何故,我無法找到如何做到這一點,而無需獲取項目&再次更新它。
這裏是代碼我使用
from boto.dynamodb2.table import Table
from boto.dynamodb2.items import Item
my_table = Table('my-table')
# Update counter for existing record.
data = {'key': 'my_key',
'range_key': 'my_range',
}
item = Item(my_table, data)
#### Do something here to increment 'counter' by 1
item.save()
我應該怎麼做才能增加一個「反」字段?
不DynamoDB V2博託API工作 –