3
0
mirror of https://github.com/Qortal/qortal.git synced 2025-02-11 17:55:50 +00:00

Merged alpha default restart settings and kenny logging changes, made a couple small default settings changes for thread priority.

This commit is contained in:
crowetic 2024-11-08 08:30:16 -08:00
parent 7fa1180622
commit 5e1ad82738

View File

@ -408,7 +408,7 @@ public class Settings {
* The thread priority (1 is lowest, 10 is highest) of the threads used for network peer connections. This is the * The thread priority (1 is lowest, 10 is highest) of the threads used for network peer connections. This is the
* main thread connecting to a peer in the network. * main thread connecting to a peer in the network.
*/ */
private int networkThreadPriority = 5; private int networkThreadPriority = 7;
/** /**
* The Handshake Thread Priority * The Handshake Thread Priority
@ -416,14 +416,14 @@ public class Settings {
* The thread priority (1 i slowest, 10 is highest) of the threads used for peer handshake messaging. This is a * The thread priority (1 i slowest, 10 is highest) of the threads used for peer handshake messaging. This is a
* secondary thread to exchange status messaging to a peer in the network. * secondary thread to exchange status messaging to a peer in the network.
*/ */
private int handshakeThreadPriority = 5; private int handshakeThreadPriority = 7;
/** /**
* Pruning Thread Priority * Pruning Thread Priority
* *
* The thread priority (1 is lowest, 10 is highest) of the threads used for database pruning and trimming. * The thread priority (1 is lowest, 10 is highest) of the threads used for database pruning and trimming.
*/ */
private int pruningThreadPriority = 1; private int pruningThreadPriority = 2;
/** /**
* Sychronizer Thread Priority * Sychronizer Thread Priority