DS
Size: a a a
DS
P
DS
DS
P
P
GS
DS
clock = require('clock')
fiber = require('fiber')
box.cfg{memtx_memory=4000000000}
t = box.schema.space.create('t', {if_not_exists=true})
t:create_index('pk', {if_not_exists=true})
t:truncate()
for i = 1,100000 do
t:replace{i,string.rep('a', 10000)}
end
tm = clock.time()
for i=1,100000 do
tup = t:get(i):totable()
if tup[1] == 1 then print('started') end
end
collectgarbage()
print(clock.time()-tm)DS
DS
DS
DS
DS
DS
DS
EL
AZ
DS