_posts = this.fts.getAllPosts();
logger.info("POST FETCHED: " + _posts.size());
this.setMessage(_posts.size()
+ " bookmarks fetched. Adding to database...");
CachingBookmarksService cbs = new CachingBookmarksService(
this.bookmarking, _posts, false);
// System.out.println("Adding posts to db");
FutureTask<?> taskBkmrk = cbs.submitTask();
// wait for completition
taskBkmrk.get();
// Thread.sleep(5000);