将 Chronicle 与 vertx.io 一起使用...
我为每个垂直创建一个新的编年史。即:每个线程一个实例。
chronicle = ChronicleQueueBuilder.indexed("samePath").build(); <-- This is created per thread to the same queue.
现在对于我所做的每个 web http POST 请求......每个帖子一次只由 1 个线程处理。
String message = request.toString();
ExcerptAppender appender = chronicle.createAppender();
// Configure the appender to write up to 100 bytes
appender.startExcerpt(message.length()+100);
// Copy the content of the Object as binary
appender.writeObject(message);
// Commit
appender.finish();
这似乎有效。但是可以吗?