function setWithExpiry(key, value, ttl) {
const now = new Date()
// `item` is an object which contains the original value
// as well as the time when it's supposed to expire
const item = {
value: value,
expiry: now.getTime() + ttl,
}
localStorage.setItem(key, JSON.stringify(item))
}
또는 다음과 같이 개별적으로 저장할 수 있다.
window.sessionStorage.setItem(key, value);
window.sessionStorage.setItem(key, expiry);
스토리지에 저장된 정보를 조회하여 현재시간과 만료시간을 비교한다.
function getWithExpiry(key) {
const itemStr = localStorage.getItem(key)
// if the item doesn't exist, return null
if (!itemStr) {
return null
}
const item = JSON.parse(itemStr)
const now = new Date()
// compare the expiry time of the item with the current time
if (now.getTime() > item.expiry) {
// If the item is expired, delete the item from storage
// and return null
localStorage.removeItem(key)
return null
}
return item.value
}
프로젝트 관리 도구 '지라(Jira)'에 대해 알아보자. (0) | 2023.04.02 |
---|---|
TTL (Time To Live) (0) | 2023.02.16 |
Hash Router와 Browser Router의 차이점 (0) | 2023.02.07 |
컴파일러 언어와 인터프리터 언어 비교 (0) | 2023.01.03 |