자바스크립트의 메모이제이션
메모이제이션은 함수 결과를 캐시하는 최적화 기술입니다. 동일한 입력을 다시 제공하면 성능 저하를 일으킬 수 있는 코드를 실행하는 대신 캐시에서 결과를 가져옵니다.
결과가 캐시되지 않은 경우 함수를 실행하고 결과를 캐시합니다. 숫자의 제곱을 구하는 예를 들어 보겠습니다.
const square = () => {
let cache = {}; // set cache
return (value) => {
// if exists in cache return from cache
if (value in cache) {
console.log("Fetching from cache");
return cache[value];
} else {
// If not in cache perform operation
console.log("Performing expensive query");
const result = value * value;
cache[value] = result; // store the value in cache
return result; // return result
}
}
}
const sq = square();
console.log(sq(21)); // Performing expensive query, 441
console.log(sq(21)); // Fetching from cache, 441
왜 또는 언제 사용합니까?
Reference
이 문제에 관하여(자바스크립트의 메모이제이션), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/bhagatparwinder/memoization-in-javascript-2ncl텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)