Blazing Fast Tab-Completion Engine: Rebuilt the command autocomplete pipeline to suggestion online players first and query caches efficiently, fully preventing tick/TPS spikes caused by streaming massive database sets on the main server thread.
High-Frequency Chat Filter Caching: Externalized and cached all repetitive configuration queries inside high-frequency code paths. Your server's CPU is now 100% safe from nested YAML getConfig() mapping lookups during chat events.
Pre-Normalized Blocked-Words Optimization: Blocked words are now fully normalized once upon config loading or reloading rather than dynamically on every single chat message sent, reducing chat filtering overhead exponentially.
️ Thread-Safe Sliding Caffeine Cache: Upgraded the active punishments cache to access-based expiration (expireAfterAccess), eliminating unexpected database .join() lockouts on the async chat thread pool for long-session online players.
Intelligent Tokenized Fuzzy Matcher: Refined the Levenshtein similarity detection by breaking long sentences into words/tokens. Fuzzy word matching now works accurately even inside long sentences rather than checking only the entire message length.
JDBC Resource Safety Audit: Wrapped all database queries and ResultSet streams inside robust try-with-resources blocks, guaranteeing total protection against Hikari Connection Pool leaks.
A massive optimization update ensuring stellar performance, minimal memory footprints, and absolute database stability. Upgrade to v1.0.5 now to unlock ultimate scalability for your server!