document icon indicating copy to clipboard operation
document copied to clipboard

Effortless JSON storage for Tarantool

Results 3 document issues
Sort by recently updated
recently updated
newest added

It would be cool to have a RPM and Debian packages, like a [tarantool-avro-schema](https://packagecloud.io/app/tarantool/1_9/search?q=tarantool-avro-schema) or [tarantool-http](https://packagecloud.io/app/tarantool/1_9/search?q=tarantool-http) When I want to build a RPM package for my application, I specify in...

Will field updates be supported?

Step to reproduce: 1. Create space and insert documents as in sample tarantool> box.schema.create_space('TEST_DOC', {if_not_exists = true}) tarantool> doc.create_index(box.space.TEST_DOC, 'primary',{parts={'id', 'unsigned'}, if_not_exists=true}) tarantool> doc.insert(box.space.TEST_DOC, {id=1, foo="foo", bar={baz=3}}) 2. Verify that...