Is Your Server Memory Full? A Quick Linux Command to Free Up Memory!
If your server’s memory usage is too high, causing slow performance or crashes, you can try the following Linux command to quickly free up cached memory: # This parameter can be used to instruct the kernel to actively free memory caches, but it will not affect running programs. sync; echo 3 > /proc/sys/vm/drop_caches Command Explanation … Read more