DEV Community

Play Button Pause Button
Souvik Paul
Souvik Paul

Posted on

 

How to Clear Cache in Google Chrome [Step by Step]

In this video, I’m gonna show you how you can clear the cache memory from your chrome browser application. This is the exact step by step way to clear cache in chrome on Windows, Mac & Linux.

I think it’s somewhat important to clear the cache memory overtime to ignore frequent lags and high usage of RAM while using chrome browser on your personal computer.

Although, cleaning the cache memory can occur a little bit of extra internet usage when you’re going to load any website next time, but it will surely increase the smoothness and performance of your overall browsing experience.

Keeping that note in mind, let’s clean the cache memory.

When it’s done, restart your chrome browser & enjoy! And I appreciate it if you subscribe to the channel for more videos.

Thank you for watching, bye.

Top comments (3)

Collapse
 
mtegarsantosa profile image
arsannnnn

we also can use ctrl + shift + del. thanks for sharing 😄

Collapse
 
beginnerdeveloper profile image
Beginner Developer • Edited

image
Simply disable cache from Devtools 😀

Collapse
 
souviktests profile image
Souvik Paul

Yup, it's cool :)

11 Tips That Make You a Better Typescript Programmer

typescript

1 Think in {Set}

Type is an everyday concept to programmers, but it’s surprisingly difficult to define it succinctly. I find it helpful to use Set as a conceptual model instead.

#2 Understand declared type and narrowed type

One extremely powerful typescript feature is automatic type narrowing based on control flow. This means a variable has two types associated with it at any specific point of code location: a declaration type and a narrowed type.

#3 Use discriminated union instead of optional fields

...

Read the whole post now!