我想按条件从 Tarantool 空间中删除数据。我想实现结果等于 SQL 查询:
DELETE from 'books' where 'timestamp'< 123456789
当我使用此查询时,它以错误结尾: Failed to allocate 16384 bytes in mempool for new slab
我有空间books
。我做:
books:delete(1)
它删除行但我的空间 len 增加:
books:len()
那么我该如何在 Tarantool 中做到这一点呢?