search
HomeJavaJavaBaseUnderstanding the concept of caching in java

Understanding the concept of caching in java

Nov 12, 2019 pm 04:51 PM
javaconceptunderstandcache

Understanding the concept of caching in java

What is cache

Cache is a buffer for data exchange (called: Cache). When a piece of hardware wants to read data , will first summarize the query data from the cache, execute it directly if it exists, and obtain it from the memory if it does not exist. Since cached data is much faster than memory, the role of cache is to help the hardware run faster.

Cache often uses RAM (non-permanent storage that is lost when power is turned off), so after use, the files will still be sent to hard disk and other storage for permanent storage. The largest cache in a computer is a memory stick, and there is also a 16M or 32M cache on the hard disk.

The cache is set up to coordinate the difference in access speed between the CPU and main memory. Generally, the working speed of the CPU is high, but the working speed of the memory is relatively low. In order to solve this problem, a cache is usually used. The access speed of the cache is between that of the CPU and the main memory.

Cache is just to save some external storage data in the memory. Why is it saved in the memory? The variables in all the programs we run are stored in the memory, so if you want to put the value into In memory, it can be stored in variables. Some caches in JAVA are generally implemented through Map collections.

The different roles of cache in different scenarios:

Operating system disk cache ——> Reduce disk mechanical operations.

Database cache——>Reduce file system IO.

Application Cache -> Reduce queries to the database.

Web server cache——>Reduce application server requests.

Client browser cache——>Reduce visits to the website.

Recommended tutorial: Java tutorial

The above is the detailed content of Understanding the concept of caching in java. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),