We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using keys temporarily. To avoid having them pile up in the memory, I want to delete them once I'm done. I'm not sure how.
Would setting to "nil" work?
i.e.,
defsave.set("name", "keys", { v1 = nil, v2 = nil })
They keys are part of a file called "upgrades". The saved values are the costs. Once the object is upgraded, saving the costs is no longer necessary.
Additionally, how would the process work for deleting a key (not values) from memory? Maybe that would be an easier approach.
The text was updated successfully, but these errors were encountered:
nil will work for both!
Sorry, something went wrong.
No branches or pull requests
I'm using keys temporarily. To avoid having them pile up in the memory, I want to delete them once I'm done. I'm not sure how.
Would setting to "nil" work?
i.e.,
defsave.set("name", "keys", { v1 = nil, v2 = nil })
They keys are part of a file called "upgrades". The saved values are the costs. Once the object is upgraded, saving the costs is no longer necessary.
Additionally, how would the process work for deleting a key (not values) from memory? Maybe that would be an easier approach.
The text was updated successfully, but these errors were encountered: