36 lines
602 B
Markdown
36 lines
602 B
Markdown
---
|
|
title: "library migration"
|
|
contributor: "@abhinavme1004@gmail.com"
|
|
tags: #general, #abhinavme1004gmailcom
|
|
---
|
|
|
|
๐ด 1. Data Access & Connection Management
|
|
These are critical because they affect performance, scalability, and outages.
|
|
|
|
๐น Redis
|
|
โ Jedis (older pattern, topology issues)
|
|
|
|
โ
Lettuce (reactive, auto-reconnect)
|
|
|
|
โ
Valkey Glide (AWS recommended)
|
|
|
|
๐น JDBC Connection Pool
|
|
โ Apache DBCP
|
|
|
|
โ C3P0
|
|
|
|
โ
HikariCP (default in Spring Boot, fastest, stable)
|
|
|
|
|
|
|
|
๐น ORM / Persistence
|
|
โ Old Hibernate 4.x
|
|
|
|
โ MyBatis legacy configs
|
|
|
|
โ
Hibernate 6+
|
|
|
|
โ
Spring Data JPA latest
|
|
|
|
|