You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The exec command is nice to load configs. But it's not ideal for binds. Because it does read from the disk every time. If it is a frequently pressed bind that is a bunch of unnecessary IO. Also it logs every time and spams the console.
So exec_cached should read a file only once and then store the data in memory. If it is run again it will not print anything to the console.
The text was updated successfully, but these errors were encountered:
Another idea would be to add methods to the config language. Because that is what exec is abused for in those binds. To have multiple commands run at once.
The exec command is nice to load configs. But it's not ideal for binds. Because it does read from the disk every time. If it is a frequently pressed bind that is a bunch of unnecessary IO. Also it logs every time and spams the console.
So exec_cached should read a file only once and then store the data in memory. If it is run again it will not print anything to the console.
The text was updated successfully, but these errors were encountered: