Spring Boot Web Flux with JOOQ for interfacing with DB and Kotlin coroutines to make blocking JDBC calls run asynchronously. Now with rsockets.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

4 lines
273 B

insert into messages (message, user_id) values ('Hello there', 1);
insert into messages (message, user_id) values ("How's it going", 1);
insert into messages (message, user_id) values ('Hello world', 2);
insert into messages (message, user_id) values ("I've got pizza", 2);