TransactionManagerImple tm = new TransactionManagerImple();
tm.begin();
EntityManager em = factory.createEntityManager();
Tweet tweet = new Tweet( "Spice is the essence of life" );
em.persist( tweet );
tm.commit();
em.close();
tm.begin();
em = factory.createEntityManager();
FullTextEntityManager ftem = Search.getFullTextEntityManager( em );