this.schemaPrekey = new StringBuilder(schemaPrekey).append(":").toString();
}
@Override
public Row<T, String> get(String row) throws AvroBaseException {
MemcachedItem memcachedItem = client.gets(prekey + row);
long version = memcachedItem.getCasUnique();
byte[] bytes = (byte[]) memcachedItem.getValue();
String schemaKey = new String((byte[]) client.get(prekey + schemaPrekey + row));
Schema schema = schemaCache.get(schemaKey);
if (schema == null) {
byte[] schemab = (byte[]) client.get(schemaPrekey + schemaKey);
schema = loadSchema(schemab, schemaKey);