write back cache - traduzione in arabo
Diclib.com
Dizionario ChatGPT
Inserisci una parola o una frase in qualsiasi lingua 👆
Lingua:

Traduzione e analisi delle parole tramite l'intelligenza artificiale ChatGPT

In questa pagina puoi ottenere un'analisi dettagliata di una parola o frase, prodotta utilizzando la migliore tecnologia di intelligenza artificiale fino ad oggi:

  • come viene usata la parola
  • frequenza di utilizzo
  • è usato più spesso nel discorso orale o scritto
  • opzioni di traduzione delle parole
  • esempi di utilizzo (varie frasi con traduzione)
  • etimologia

write back cache - traduzione in arabo

COMPUTING COMPONENT THAT TRANSPARENTLY STORES DATA SO THAT FUTURE REQUESTS FOR THAT DATA CAN BE SERVED FASTER
Caching; Draft:Cache memory; Write-through; Write-thru; Write-back; No-write allocation; Cache miss; Cache conflict; Cache hit; Cache-Memory; Memory cache; Write through cache; Write back cache; Cash memory; Cache misses; Cacheable content; Cache Memory; Dirty cache; Dirty flag; SQL caching; Game Cache File; Lazy write; Dirty (computer science); Backing store; Result cache; Memory caching; Caching (computing); Write-around; Write-behind; Writeback; Cache memory; GPU cache; Cache hit ratio; Cache hit rate; Write-back cache; Hardware cache; Software caches; Remote memory; Remote cache; Stack cache; Copy back cache; Writethrough
  • A write-back cache with write allocation
  • A write-through cache with no-write allocation

write back cache         
ذاكرة إنتقالية ذات كتابة بعدية
cache memory         
ذاكرة خفية ، ذاكرة إنتقالية ، ذاكرة وسيطة .
remote memory         
‎ ذاكِرَةٌ بُعادِيَّة‎

Definizione

cache miss
<storage> A request to read from memory which cannot be satisfied from the cache, for which the main memory has to be consulted. Opposite: cache hit. (1997-01-21)

Wikipedia

Cache (computing)

In computing, a cache ( (listen) KASH) is a hardware or software component that stores data so that future requests for that data can be served faster; the data stored in a cache might be the result of an earlier computation or a copy of data stored elsewhere. A cache hit occurs when the requested data can be found in a cache, while a cache miss occurs when it cannot. Cache hits are served by reading data from the cache, which is faster than recomputing a result or reading from a slower data store; thus, the more requests that can be served from the cache, the faster the system performs.

To be cost-effective and to enable efficient use of data, caches must be relatively small. Nevertheless, caches have proven themselves in many areas of computing, because typical computer applications access data with a high degree of locality of reference. Such access patterns exhibit temporal locality, where data is requested that has been recently requested already, and spatial locality, where data is requested that is stored physically close to data that has already been requested.