Andrey Art
Andrey Art
1. Optimize strings concatenating; 2. Optimize check if a list is empty;
Steps to reproduce run-time error: 1. Compile Socialite 2. Attempt to load data --- Output: ``` Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException at java.base/java.lang.Class.forName0(Native Method) at java.base/java.lang.Class.forName(Class.java:467) at org.jboss.logging.Logger.getMessageLogger(Logger.java:2248) at...
Fix for compilation errors "Source option 5 is no longer supported. Use 7 or later." and "Target option 5 is no longer supported. Use 7 or later." --- Command to...
MongoInterruptedException's msg and its stacktrace handling fix in BenchmarkCommand's worker threads
Each successful benchmark's run currently ends with this output from each BenchmarkCommand's worker Runnable caused by their interruption: ``` ... at com.mongodb.internal.connection.DefaultServerConnection.command(DefaultServerConnection.java:123) at com.mongodb.operation.CommandOperationHelper.executeWrappedCommandProtocol(CommandOperationHelper.java:242) at com.mongodb.operation.CommandOperationHelper.executeWrappedCommandProtocol(CommandOperationHelper.java:233) at com.mongodb.operation.CommandOperationHelper.executeWrappedCommandProtocol(CommandOperationHelper.java:136) at com.mongodb.operation.FindOperation$1.call(FindOperation.java:701)...
Based on performance assumptions, the mongodb-driver should be updated from version 3.8.1 to version 3.12.11. The aggregated performance gain equals to 9.62%. Test's Methodology: 10 cold runs with mongodb-driver v3.8.1,...
1. Sequence length checking based on PEP8 guidelines; 2. List constructor instead of an identity comprehension; 3. Reimport fix; 4. Comment fixes;
Setup: Improperly configured replica set on a server side (server's rs.status() output is "MongoServerError: Our replica set config is invalid or we are not a member of it", client will...
From a logical point of view, it is not possible to specify '--reset' and '--no-load' arguments at the same time. The current py-tpcc code state allows this, causing the database...
Introduced mongodbdriver's optional explicit encryption with automatic decryption of CUSTOMER sensitive fields. Enabling/disabling the feature is controlled by the "fle" configuration parameter.
Introduced mongodbdriver's optional TLS/SSL (Transport Layer Security/Secure Sockets Layer) encryption feature. Enabling/disabling the feature is controlled by the "ssl" configuration parameter and SSL certificates settings.