cartridge-java
cartridge-java copied to clipboard
Tarantool Cartridge Java driver for Tarantool versions 1.10+ based on Netty framework
Need to fix `MessageInsufficientBufferException`
This option is necessary if a space is not shared and is present on a router node only, or a non-standard group name is used for it. Documentation: See the...
An example was made on cartridge-springdata, but this is relevant for cartridge-java ```java @Tuple("test_space") public enum TestEnum { a, b; } ``` ```java @Tuple("test_space") public interface EnumRepository extends TarantoolRepository {...
Test case: ```java @Test public void test(){ DefaultMessagePackMapper mapper = DefaultMessagePackMapperFactory.getInstance().defaultComplexTypesMapper(); Map expected = new HashMap(); expected.put((long) (Short.MAX_VALUE + 1), "test"); expected.put((long) (Short.MAX_VALUE + 2), "test"); Map actual = mapper.fromValue(mapper.toValue(expected));...
If anyone tries to insert null-value into a space field that is part of the primary index then tarantool runs into an error. In some cases, this can leads to...
I caught this exception when bumped cartridge-driver from 0.7.2 to 0.14.0. We have around 180k entities in Tarantool. Each root entity User has maximum 6 inner entities as 1 to...