home/roleplay/library-migration

library migration

GPTClaudeGemini··580 copies·updated 2026-07-13
library-migration.prompt
🔴 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

when to use it

Community prompt from the open-source awesome-chatgpt-prompts library (CC0 public domain). A proven "library migration" starting point — swap in your own specifics and constraints. Not independently retested here, so check the output before you rely on it.

tags

roleplaycommunitygeneral

source

awesome-chatgpt-prompts · CC0 1.0 (public domain)