answersLogoWhite

0

Yes, Onboard L1 and L2 cache is accessed much quicker than system ram.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

Why not make cache larger?

A cache is intended to speed things up. The larger the cache, the slower it performs. If it becomes slower to access the cache than the memory itself, it defeats the purpose of having a cache.


Is Cache memory generally slower than RAM?

Cache memory is random access memory (RAM) that a computer microprocessor can access more quickly than it can access regular RAM. As the microprocessor processes data, it looks first in the cache memory and if it finds the data there (from a previous reading of data), it does not have to do the more time-consuming reading of data from larger memory. Cache Memory generally comes in smaller size (3MB, 6MB etc) than the RAM (512 MB, 1GB,2GB.....)


What is role of cache memory in microprocessor what are the typical cache capacities of p4 processor?

Cache memory is random access memory (RAM) that a computer microprocessor can access more quickly than it can access regular RAM. As the microprocessor processes data, it looks first in the cache memory and if it finds the data there (from a previous reading of data), it does not have to do the more time-consuming reading of data from larger memory.


Can RAM be totally replaced by cache memory?

A resounding "sort of!" You could, but it would defeat the point of having a cache to begin with.Physically, the cache(s) of a computer is (are) located closer to the CPU than the RAM - so even if you replaced the RAM with a higher-speed memory, the part that was further away from the CPU would take longer to access than the part that was closer (although the difference would be very small). Cache is also much more expensive than RAM to create, although that doesn't mean it's impossible, and the speed of access is still limited by the speed of the FSB (Front Side Bus). Although cache may have a faster access time than RAM, it is not efficient (cost-wise, at least!) to simply cache everything because you don't necessarily need to use everything right away all the time - cache exists to give you faster access to time-expensive data that you use often. It could get to the point where even your cache would need cache!


What is the function of CPU cache?

Many CPUs have what is known as a CPU cache. The function of this CPU cache is to speed up access to data.


Is cache memory a removable memory?

No, a cache memory is often used to store data that has been needed recently on grounds that it will be faster to access when/if it is needed again. When data that is requested is contained in the cache you have a cache hit, and when you have to retrieve it from the hard drive (or where ever its original storage was) again it is called a cache miss. Retrieving data from the hard drive is slower than retrieving it from the cache.


Which type of CPU cache has the highest latency?

The Level 3 (L3) cache has the highest latency. The CPU cache is memory that is used to decrease the time that it takes the CPU to access data. Because the data is cached, it can be accessed more quickly. The CPU cache is often found directly on the CPU or built into the CPU. The L3 cache is usually larger than the L1 and L2 cache, but it is searched last. The CPU searches for data in the following order: L1 cache, L2 cache, L3 cache, RAM.


Why do need cache memory?

Cache simply is for speeding up the processes already completed, since it is faster than ram, and easier to access. it basically is just for speeding up applications you use often. cache is volatile meaning that it is erased when you turn off your computer.


Is 2mb of cache better than 1mb cache?

Yes.


What is the Type of memory that stores frequently and recently accessed data and commands which can then be access by the computer more quickly than RAM memory?

cache


Cache or ram which one is faster?

Cache is faster than RAM...


What is processor cache memory?

Processor cache is intermediate memory between the processor itself and main memory (RAM). Because processors can read data so much faster than main memory, the speed of a processor would essentially be limited to the speed of RAM if we couldn't find a way to increase the efficiency of accessing data in main memory. Caches, which have a much lower access time than RAM, help to mitigate this problem. Caches work on the principle of spacial locality. That is to say, they use the idea that if you access a location in main memory, then it is highly likely that the next memory location you want to access is very close to where you are. When you access main memory, the cache will actually pull in a "chunk" of data (often called a "cache line") in the hope that the next time you try to access data it will already be in the cache. Typically there are two levels of cache (though with the increasing popularity of multi-core processors, three levels of cache are becoming more and more necessary). The first level of cache (L1 cache) is what is directly accessed by the processor and is therefore the fastest (and most expensive) cache. L1 cache is usually split into two parts: data cache and instruction cache. The instruction cache holds the instructions of running programs that the processor needs to execute. The data cache holds the data being used by current instructions. The second level of cache (L2 cache) is where the L1 cache pulls in information from. L2 cache is slower than L1 cache, but is more affordable and can be much larger than L1. With the exception of L3 caches mentioned above, this is the cache which pulls information in from main memory.