Hacker News new | ask | show | jobs
by jnurmine 2881 days ago
Interesting with zwischenspeicher... In Finnish terminology "cache" is "välimuisti" which seems to be the same kind of word-construction.

I have wondered how people came up with translations to computer terminology. In retrospect, borrow from the German language, of course - as the saying goes, they have a word for everything!

1 comments

It just occurred to me that there are two very different kinds of caches which aren't really distinguished by terms:

- Cache, as in processor cache: total access mediation, i.e. all operations go through the cache. Cache bypass might be possible but rare in practice.

- Cache, as in application cache (e.g. redis/memcached/@lru_cache): thing were you put some result to recall later conditionally. Exactly the opposite of total access mediation: application needs to explicitly use cache.

The first one I'd call Zwischenspeicher. The second I'd call Ergebnisabrufspeicher.