27 posts in total

Java

Posts tagged

Java - Random test data generator

by Mallim1 min read

Good to use if you are required to generate a few thousand data elements. As described in random-beans: Because life is too short to generate random Java beans by hand. These are the two Java based libraries if I want to try Java libraries MockNeat random-beans

Mybatis Batch mode

by Mallim1 min read

IBATIS/Mybatis has the same underlying thing to watch out: To get benefit from batch executor, all the statements must be the same (it internally uses java.sql.PreparedStatement#addBatch()). If you use <foreach />, the statement changes and MyBatis has to create a new state ...

Notes on Kilim

by Mallim1 min read

Introduction I am actually think is so impressive and reading a technical paper on it Related resources Kilim 2 Kilim streams - useful?? Kilim: A server framework with lightweight actors, isolation types and zero-copy messaging KilimBenchmarkMain.java Examples using kilim-strea ...