Using CRUD stored procedures

February 7, 2023 ยท View on GitHub

Main page

Using CRUD stored procedures

This section shows the necessary settings for connecting to instances with a user-defined CRUD API exposed as Lua stored functions or Cartridge roles implementing the API similar to the one of tarantool/crud. Works with tarantool/crud 0.3.0+.

Example of TarantoolClient set up
https://github.com/tarantool/cartridge-java/blob/8a880423da1ce2bc0e82557d70ab46c9e7eba618/src/test/java/io/tarantool/driver/integration/ProxyTarantoolClientExampleIT.java#L45-L55

Example of client API usage
https://github.com/tarantool/cartridge-java/blob/8a880423da1ce2bc0e82557d70ab46c9e7eba618/src/test/java/io/tarantool/driver/integration/ProxyTarantoolClientExampleIT.java#L64-L107

You can read more about Cartridge applications in its documentation.
Also look at available Cartridge application examples.