Dvd dvd = new Dvd("The dark knight", "Batman returns with it best enomy the Jocker. The dark side of this movies shows up pretty quickly");
s.persist( dvd );
dvd = new Dvd("Wall-e", "The tiny little robot comes to Eartch after the dark times and tries to clean it");
s.persist( dvd );
tx.commit();
s.clear();
tx = s.beginTransaction();
Map<String, Float> boosts = new HashMap<String, Float>(2);
boosts.put( "title", new Float(4) );
boosts.put( "description", new Float(1) );