Recently I've seen a lot on Minecraft servers switching from SQL to Redis as their preferred data storage. I was wondering if it would be beneficial to add Redis as a data type to my plugins
Redis is primarily used for communication between servers, not necessarily data storage.
SQL is good for specific things (as long as you're using HikariCP data pooling for speed and efficiency) - although the downside of SQL is that it's mainly flatfile databases.
MongoDB is a good alternative, using json documents to store data.
