tarantool (memtx) を使用するとすべて動作しますが、sophia で同じように実行しようとすると動作しません;(
memtx:
logs_space_id = 'logs'
logs = box.schema.create_space(logs_space_id)
logs:create_index('primary', {type = 'tree', parts = {1, 'STR', 3, 'STR'}})
ソフィアが機能しないのはなぜですか?
logs_space_id = 'logs'
log_space = box.schema.space.create(logs_space_id,
{
engine = 'sophia',
if_not_exists = true
}
)
log_space:create_index('primary', {
parts = {1, 'STR', 3, 'STR'}
}
)