---
title: library migration
type: prompt
provider: community
category: personas
source: 'https://github.com/f/awesome-chatgpt-prompts'
license: CC0-1.0
tags:
  - persona
  - chatgpt
dateAdded: '2026-01-27'
featured: false
origin: community
language: en
description: "\U0001F534 1. Data Access & Connection Management These are critical because they affect performance, scalability, and outages. \U0001F539 Redis ❌ Jedis (older patter"
---

🔴 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
