Answers for "how to clear cache on server"

SQL
0

clear query cache sql server

DBCC FREEPROCCACHE
DBCC DROPCLEANBUFFERS

DBCC DROPCLEANBUFFERS clears clean (unmodified) pages from the buffer pool
Precede that with a CHECKPOINT to flush any dirty pages to disk first
DBCC FLUSHPROCINDB clears execution plans for that database
Posted by: Guest on May-08-2020
0

delete require cache

//Use this if you want to require a file with updated contents,
//without restarting the  Node js server
delete require.cache[require.resolve('./b.js')]
Posted by: Guest on January-03-2022

Code answers related to "how to clear cache on server"

Code answers related to "SQL"

Browse Popular Code Answers by Language