quickperf
quickperf copied to clipboard
QuickPerf is a testing library for Java to quickly evaluate and improve some performance-related properties
**Describe the bug** SQL annotations didn't work with Quarkus starting with 1.3. No issues are detected. I chased down the issue to `SqlRecorderRegistry` that uses an `InheritableThreadLocal` to stores the...
Bumps [spring-beans](https://github.com/spring-projects/spring-framework) from 3.2.18.RELEASE to 5.3.18. Release notes Sourced from spring-beans's releases. v5.3.18 :star: New Features Restrict access to property paths on Class references #28261 Introduce cancel(boolean mayInterruptIfRunning) in ScheduledTask...
**Describe the bug** All the OS has limits when starting new processes: - Linux e.g. ARG_MAX (https://www.in-ulm.de/~mascheck/various/argmax/) - Windows (https://docs.microsoft.com/en-us/troubleshoot/windows-client/shell-experience/command-line-string-limitation#:~:text=The%20maximum%20length%20of%20the,the%20command%20line) The proposal: generate a class path jar with manifest to...
Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...
Bumps [postgresql](https://github.com/pgjdbc/pgjdbc) from 42.2.13 to 42.3.3. Changelog Sourced from postgresql's changelog. [42.3.3] (2022-02-15 11:32:24 -0500) Changed fix: Removed loggerFile and loggerLevel configuration. While the properties still exist. They can no...
Bumps [hibernate-core](https://github.com/hibernate/hibernate-orm) from 3.6.10.Final to 5.4.24.Final. Release notes Sourced from hibernate-core's releases. Hibernate ORM 5.2.0 5.2.0 includes many improvements and bug-fixes. For a complete list of changes, see https://hibernate.atlassian.net/projects/HHH/versions/23150/tab/release-report-done. Many...
`java.util.zip.Inflater` can cause non-heap memory leaks, as explained in [this presentation](https://vimeo.com/233843335). They can be detected during the application execution thanks to [_the Leakchecker project_](https://github.com/elastic/leakchecker). This issue aims to provide an...
Today, @ProfileJvm displays JVM-related information on the console: ``` ------------------------------------------------------------------------------ ALLOCATION (estimations) | GARBAGE COLLECTION | THROWABLE Total : 3,68 GiB | Total pause : 1,264 s | Exception: 0...
Today, @ExpectJdbcBatching makes a test fails if INSERT, UPDATE or DELETE statements are executed without JDBC batching. This issue follows #132. It aims to add a boolean `lenient` element to...
@MeasureRSS and @ExpectMaxRSS annotations work on Linux thanks to this [PR](https://github.com/quick-perf/quickperf/pull/39). The goal of this issue is to make @MeasureRSS and @ExpectMaxRSS annotations work on Mac OS.