ir.addInsert(0, "Key1".getBytes(), "Value1".getBytes());
ir.addInsert(1, "Key2".getBytes(), "Value2".getBytes());
ir.addInsert(2, "Key3".getBytes(), "Value3".getBytes());
db.insert(ir, null).get();
UserDefinedLookup lookup = new UserDefinedLookup() {
public Object execute(LSMLookupInterface database) throws BabuDBException {
if ((database.lookup(0, "Key1".getBytes()) != null)
&& (database.lookup(1, "Key2".getBytes()) != null)) {
return new Boolean(true);