count = pluginMap.size();
plugins = new PrecacheTuple[count];
int i = 0;
for (Entry entry : pluginMap.entrySet()) {
Plugin p = (Plugin) entry.getKey();
plugins[i] = new PrecacheTuple(
p.getDescription().getName(),
p.getDescription().getVersion(),
(Long) entry.getValue()
);
i++;