You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A previous patches for rebuild have integrted but the first part of the patch doesn't seem to be intergreted.
Rebuildall in damm slow bur rebuild is fast.
the for loop just need this line to be fast.
for (ApplicationClass applicationClass : classes) {
rebuild(applicationClass.javaClass.getName());
}
thanks by advance,
Jean-Marie Renouard
public void rebuildAllIndexes() throws Exception {
Logger.info("Rebuild All indexes at "+getDateTime());
stop();
File fl = new File(DATA_PATH);
FileUtils.deleteDirectory(fl);
fl.mkdirs();
List classes = Play.classes
.getAnnotatedClasses(Indexed.class);
for (ApplicationClass applicationClass : classes) {
rebuild(applicationClass.javaClass.getName());
}
The text was updated successfully, but these errors were encountered:
A previous patches for rebuild have integrted but the first part of the patch doesn't seem to be intergreted.
Rebuildall in damm slow bur rebuild is fast.
the for loop just need this line to be fast.
for (ApplicationClass applicationClass : classes) {
rebuild(applicationClass.javaClass.getName());
}
thanks by advance,
Jean-Marie Renouard
public void rebuildAllIndexes() throws Exception {
Logger.info("Rebuild All indexes at "+getDateTime());
stop();
File fl = new File(DATA_PATH);
FileUtils.deleteDirectory(fl);
fl.mkdirs();
List classes = Play.classes
.getAnnotatedClasses(Indexed.class);
for (ApplicationClass applicationClass : classes) {
rebuild(applicationClass.javaClass.getName());
}
The text was updated successfully, but these errors were encountered: