*/
private synchronized void refreshItemIDs() throws IOException {
// Get the list of item ids
HTableInterface table = pool.getTable(tableName);
Scan scan = new Scan(new byte[]{0x69}, new byte[]{0x70});
scan.setFilter(new FilterList(FilterList.Operator.MUST_PASS_ALL, new KeyOnlyFilter(), new FirstKeyOnlyFilter()));
ResultScanner scanner = table.getScanner(scan);
Collection<Long> ids = Lists.newLinkedList();
for (Result result : scanner) {
ids.add(bytesToUserOrItemID(result.getRow()));
}