PropertyIndexStore idxStore = getPropertyIndexStore();
int keyId = (int) idxStore.nextId();
PropertyIndexRecord record = new PropertyIndexRecord( keyId );
record.setInUse( true );
record.setCreated();
int nameId = idxStore.nextNameId();
record.setNameId( nameId );
Collection<DynamicRecord> keyRecords =
idxStore.allocateNameRecords( nameId, encodeString( stringKey ) );
for ( DynamicRecord keyRecord : keyRecords )
{