JPA Delete Queries and Optimistic Locking: Why Batching Fails
Discovered why JPA deleteAll wasn’t batching: @Version fields force entity loading for optimistic locking. The fix: explicit @Query annotation.
Discovered why JPA deleteAll wasn’t batching: @Version fields force entity loading for optimistic locking. The fix: explicit @Query annotation.
Prefetch count is a very important parameter that we have when configuring consumers in RabbitMQ, this real-case scenario shows an example of this
Caching frequently used information is a very good approach to speed up your microservice. In this post we show a brief overview about caching