}
protected Index<Long, Buffer> createIndex(Transaction tx) {
HashIndexFactory<Long, Buffer> factory = new HashIndexFactory<Long, Buffer>();
factory.setKeyCodec(LongCodec.INSTANCE);
factory.setValueCodec(new FixedBufferCodec(DATA.length));
factory.setFixedCapacity(500);
return factory.create(tx);
}