I still have not figured the question out even after searching for like 20 minutes, I need to know how much memory out of 4mb my data store has
I do this
local DSS = game:GetService("DataStoreService")
local HTTP = game:GetService("HttpService")
local PlayerData = DSS:GetDataStore(Name)
local suc,dat = pcall(function()
return PlayerData:GetAsync(SyncName)
end)
print( string.len(HTTP:JSONEncode(dat)) )
it returns 618. what unit is that number in? kb? characters??? I have no idea
It’s a rough estimate of the number of bytes. This is the unit measure. Each megabyte is equivalent to 1e6 (1,000,000) bytes. You can convert bytes to megabytes by dividing the number of bytes by 1e6. You can divide the number of megabytes by the megabyte capacity then multiply by 100 to get a utilization percentage. After simplifying:
print(uftf8.len(HttpService:JSONEncode(data)) / 4e4)
1 Like
ok I finally know now and also does that mean this is the right way to conversion
eeidtL : ok I realize now
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.