RethinkDB获取日期时间范围之间的更改日志

时间:2018-07-02 01:49:33

标签: java rethinkdb real-time-data

现在,我只能在编程运行时从rethinkdb获取更改供稿

Connection conn = r.connection().hostname("localhost").port(28015).connect();

Cursor cursor = r.table("authors").changes().run(conn);
for (Object doc : cursor) {
    System.out.println(doc);
}   

那我想按日期时间获取更改日志过滤器的时间如何?

0 个答案:

没有答案