Pismyren
(Pismyre)
April 22, 2024, 11:31am
1
I have a ban-system that stores
key: userID ->
type = string
duration = number
timestamp = number (unix timestamp)
executor = number (userID)
reason = string
how many players would have to be banned for the datastore not to want any more data?
1 Like
Rechner2
(Rechner2)
April 22, 2024, 4:41pm
2
There is no limit on the size of a data store, only on individual keys .
Unless you have an extremely verbose type
or reason
, space should not be an issue.
1 Like
Pismyren
(Pismyre)
April 22, 2024, 5:24pm
3
Okay thank you so much!
The type will just be “tempban” or “ban”, so it won’t get too long, thanks once again!
1 Like
system
(system)
Closed
May 6, 2024, 5:24pm
4
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.