mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-01-12 15:56:00 +08:00
Batch Size set to 10192
This commit is contained in:
parent
1e68a9ce55
commit
0269dde382
@ -43,9 +43,7 @@ public enum Permissions {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the permission node in plugin.yml.
|
* Same as {@link #getPermission()}.
|
||||||
* <p>
|
|
||||||
* Same as getPermission.
|
|
||||||
*
|
*
|
||||||
* @return permission node eg. plan.inspect
|
* @return permission node eg. plan.inspect
|
||||||
*/
|
*/
|
||||||
|
@ -72,7 +72,7 @@ public class Plan extends BukkitPlugin<Plan> {
|
|||||||
private HookHandler hookHandler; // Manages 3rd party data sources
|
private HookHandler hookHandler; // Manages 3rd party data sources
|
||||||
|
|
||||||
private Database db;
|
private Database db;
|
||||||
private HashSet<Database> databases;
|
private Set<Database> databases;
|
||||||
|
|
||||||
private WebServer uiServer;
|
private WebServer uiServer;
|
||||||
|
|
||||||
@ -85,8 +85,9 @@ public class Plan extends BukkitPlugin<Plan> {
|
|||||||
* @return API of the current instance of Plan.
|
* @return API of the current instance of Plan.
|
||||||
* @throws IllegalStateException If onEnable method has not been called on
|
* @throws IllegalStateException If onEnable method has not been called on
|
||||||
* Plan and the instance is null.
|
* Plan and the instance is null.
|
||||||
|
* @throws NoClassDefFoundError If Plan is not installed.
|
||||||
*/
|
*/
|
||||||
public static API getPlanAPI() throws IllegalStateException {
|
public static API getPlanAPI() throws IllegalStateException, NoClassDefFoundError {
|
||||||
Plan instance = getInstance();
|
Plan instance = getInstance();
|
||||||
if (instance == null) {
|
if (instance == null) {
|
||||||
throw new IllegalStateException("Plugin not enabled properly, Singleton instance is null.");
|
throw new IllegalStateException("Plugin not enabled properly, Singleton instance is null.");
|
||||||
@ -110,7 +111,7 @@ public class Plan extends BukkitPlugin<Plan> {
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void onEnable() {
|
public void onEnable() {
|
||||||
// Sets the Required variables for RslPlugin instance to function correctly
|
// Sets the Required variables for BukkitPlugin instance to function correctly
|
||||||
setInstance(this);
|
setInstance(this);
|
||||||
super.setDebugMode(Settings.DEBUG.toString());
|
super.setDebugMode(Settings.DEBUG.toString());
|
||||||
super.setColorScheme(new ColorScheme(Phrase.COLOR_MAIN.color(), Phrase.COLOR_SEC.color(), Phrase.COLOR_TER.color()));
|
super.setColorScheme(new ColorScheme(Phrase.COLOR_MAIN.color(), Phrase.COLOR_SEC.color(), Phrase.COLOR_TER.color()));
|
||||||
|
@ -26,7 +26,7 @@ public class DBUtils {
|
|||||||
throw new IllegalStateException("Utility class");
|
throw new IllegalStateException("Utility class");
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final int BATCH_SIZE = 2048;
|
private static final int BATCH_SIZE = 10192;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Splits a collection of objects into lists with the size defined by
|
* Splits a collection of objects into lists with the size defined by
|
||||||
|
Loading…
Reference in New Issue
Block a user