progaudi.tarantool
progaudi.tarantool copied to clipboard
.net connector for Tarantool NoSql database.
Added support for some missed tarantool types, implemented as msgpack extensions: - Decimal type https://www.tarantool.io/ru/doc/latest/dev_guide/internals/msgpack_extensions/#the-decimal-type - Uuid type https://www.tarantool.io/ru/doc/latest/dev_guide/internals/msgpack_extensions/#the-uuid-type - Datetime type https://www.tarantool.io/ru/doc/latest/dev_guide/internals/msgpack_extensions/#the-datetime-type Added new test suites with serialization and...
It's normal behavior?  I need change connection string in runtime(by recreate Box), but memory is leaking tarantool version 1.10.2
Hi, I am trying to call a function on tarantool which inserts given list into a space. Function looks like below, it gets list, loop over records and inserts into...
Please deploy signed Nuget package to ensure enterprise builds
Tarantool has several new data types. It's needed to ensure that connector can properly serialize/deserialize them. - [ ] UUID (`MP_UUID` Since version [2.4.1](https://www.tarantool.io/ru/doc/latest/release/2.4.1/)) - [ ] Datetime (`MP_DATETIME` Since...
Hello! I have noticed slow insert performance of insert operations in connector. To test this, i have made some benchmarks: Create space: ```lua box.schema.space.create('pivot') box.space.pivot:create_index('primary', { type = 'tree', parts...
#85
Hi, When I try to create a table, I am getting the following error but even if the error is thrown when I checked the spaces from tarantool the space...
Hi, Is there a way to manage transactions through the library? In tarantool, transaction is started with box.begin() and committed with box.commit() functions. But I couldn't find any methods in...