Answered by
5 years ago Edited 5 years ago
if a local script, probably not.
The local script will be destroyed anyways when they leave.
if on the server, probably yes.
Suppose you have a session table:
1 | local session_data = { } |
4 | session_data [ player ] = { } |
7 | save_data(player, session_data [ player ] ) |
If you don't clear their index when they leave this could cause potential memory leak. You still have a reference to the player which is the key. You don't need to keep the data around when they leave anyways.
1 | session_data [ player ] = nil |
But don't worry about efficiencies or optimizations too much.
#1 rule of optimization: Don't do it.
#2 rule of optimization: Don't do it yet.