private final ColumnMatcher colId = new ColumnMatcher("id");
public RepositoryKey get(RepositoryName name) throws DhtException,
TimeoutException {
Cell cell = table.get(name.asBytes(), colId.name());
if (cell == null)
return null;
return RepositoryKey.fromBytes(cell.getValue());
}