HelpHow do I setup FSOD with Redis instead of My SQL?

Posts 1–4 of 4 · Page 1 of 1
How do I setup FSOD with Redis instead of My SQL?
So I don't do private servers anymore but when I was acquainted with Mike he told me the DB I was using (MySQL) was killing the server and I was told by someone else Redis is what you need to use, anyone know how to set it up for FSOD?
Fabiano? Redis? Scrap that, just use NRCore if you want redis.
Quote Originally Posted by Demon View Post
Fabiano? Redis? Scrap that, just use NRCore if you want redis.
if you want a messy source, use NRCore. If you want a clean source, use fsod redis on ghostmarees github.
MySQL doesn't kill the server, it's just the way that it's designed that kills the server.
For instance; if you take a look at some redis source, you'll see that instead of it having a large accounts table, it stores accounts as their own keys, e.g. account.1, account.2, etc.. Therefore as long as you tell redis what table to go to, it's going to know where to go straight away.
On MySQL, if you have like 5000 accounts in the account table, you'll start to face performance issues, because when trying to grab the account data, the system has to go through all the previous rows of accounts before it finds the account that it's looking for, which is terrible, this is probably why the server breaks after a large amount of pets/accounts.
If you were to implement a system like on redis on MySQL, it could be a lot faster, it's pretty easy to add in too.
Although, I'm not sure if I'm right on this, it's just what I think/know from experience, but it makes sense in my head.
Posts 1–4 of 4 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?