Hello, there is a web interface with various functions, it is connected to the Tarantool DBMS in which the ability to search for specific tuples by value is implemented. It is necessary that these values are entered from the web-muzzle, and then the necessary method was launched, unfortunately I myself can not yet implement it. The value you need to enter from the keyboard, Arrays.asList(1491573042) .
try { Socket socket = new Socket(); //socket.connect(new InetSocketAddress("173.20.41.22", 3311)); socket.connect(new InetSocketAddress("173.20.25.75", 3311)); Connection con = new Connection("admin", "admin", socket); //out.println("box.info:> " + con.call("box.info") + "\n"); out.println("con.select :> " + con.select(512, 0, Arrays.asList(1491573042), 0, 1024, 0) + "\n\n"); con.close(); } catch (Exception e) { System.out.println("Error TarantoolConnection: " + e); }
Arrays.asList()method. - Sergey Gornostaev