Best way to use datastores?

I am making a plugin that incluides lots of datastores and I want to know wich is the best way of use it: Make a diccionary or just concadenate all in a string and then split it to get the info?
(Whith better I mean that is faster or thing like that).

I suggest managing all your data in a dictionary and using HttpService to JSON-encode before saving and decode after loading.
This lets you convert your data between a string and a dictionary, so you won’t need to manually split it.

1 Like