0.1.7 • Published 3 years ago

managed-misses-cache v0.1.7

Weekly downloads
19
License
MIT
Repository
github
Last release
3 years ago

ZachCurtis

ZachCurtis

managed-misses-cache

Memory cache with bound miss functions to allow for cleaner data layer abstraction

Installation

npm install managed-misses-cache

Example

import Cache from 'managed-misses-cache'
async () => {
    await Cache.bindMissHandler('name', 15000, async function(){
        return 'sam'
    })

    let name = await Cache.get('name')
}

Usage

Generic Miss Handlers

The key missed is passed to the miss handler allowing you to better generalize their logic.

async function getData(key: string): Promise<string> {

    switch (key) {
        case 'name':
            return 'sam'

        case 'job':
            return 'driver'
    }
}

await Cache.bindMissHandler('name', 15000, getData)
await Cache.bindMissHandler('job', 15000, getData)

setTimeout(async function(){
    let name = await Cache.get('name')
    let job = await Cache.get('job')

    console.log(name) // sam
    console.log(job) // driver
}, 200)

Manually Force Miss

let _name = 'sam'
await Cache.bindMissHandler('name', 15000, async function(){
    return _name
})

let name1 = await Cache.get('name') // sam

_name = 'john'
await Cache.miss('name')

let name2 = await Cache.get('name') // john

Filter With getConcat

async function getData(key: string): Promise<Array<any>> {

    switch (key) {
        case 'spots':
            return ['ledge gap', 'Bank']

        case 'stairs':
            return ['5 stair' , '12 stair']
    }
    return ['']
}

await Cache.bindMissHandler('spots', 15000, getData)
await Cache.bindMissHandler('stairs', 15000, getData)

setTimeout(async function() {
    let allSpots = await Cache.getConcat(['spots', 'stairs'])
    // ['ledge gap', 'Bank', '5 stair', '12 stair']
}, 500)

Cache Sections

import { SectionedCache } from 'managed-misses-cache'

await SectionedCache.bindMissHandler('users', 'user-1329', 15000, () => {
    
})
0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago

0.0.11

3 years ago

0.0.3

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago