示例#1
0
 class Index2(GlobalIndex):
     name = 'index2'
     hash_key = 'bbq'
     range_key = 'bar'
     projection = ProjectAll()
     read = 5
     write = 5
示例#2
0
 class Index2(GlobalIndex):
     name = "index2"
     hash_key = "bbq"
     range_key = "bar"
     projection = ProjectAll()
     read = 5
     write = 5
示例#3
0
 class Index(idx):
     name = 'test-idx'
     # no key named baz
     hash_key = 'baz'
     range_key = 'bar'
     projection = ProjectAll()
示例#4
0
 class Index(idx):
     name = 'test-idx'
     # missing hash_key
     range_key = 'bar'
     projection = ProjectAll()
示例#5
0
 class Index(GlobalIndex):
     name = 'test-idx'
     hash_key = 'foo'
     range_key = 'bar'
     projection = ProjectAll()
示例#6
0
 class Index(idx):
     name = "test-idx"
     # no key named baz
     hash_key = "baz"
     range_key = "bar"
     projection = ProjectAll()
示例#7
0
 class Index(idx):
     name = "test-idx"
     # missing hash_key
     range_key = "bar"
     projection = ProjectAll()
示例#8
0
 class Index(GlobalIndex):
     name = "test-idx"
     hash_key = "foo"
     range_key = "bar"
     projection = ProjectAll()