npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cache-factory

v1.0.6

Published

add the cacheable ability to custom-factory.

Downloads

23

Readme

CacheFactory Build Status npm downloads license

add the cacheable items ability to CustomFactory.

  • CacheFactory
    • _cache (secondary-cache): the cache object to hold the instance.
    • constructor(aName, aOptions): get a singleton instance or create a new instance item.
      • aName: the item name. first search the aName in registeredObjects. then search in the cache. the cached item name should be a full path or a related path.
    • constructor(aOptions): get a singleton instance or create a new instance item.
      • aOptions (object):
        • name: the factory item name. defaults to the constructor name
        • the cache settings:
          • fixedCapacity: the first fixed cache max capacity size, defaults to unlimit.
          • capacity: the second LRU cache max capacity size, defaults to unlimit. deletes the least-recently-used items if reached the capacity. capacity > 0 to enable the secondary LRU cache. defaults to 8192.
          • expires: the default expires time (milliscond), defaults to no expires time(<=0). it will be put into LRU Cache if has expires time
          • cleanInterval: clean up expired item with a specified interval(seconds) in the background. Disable clean in the background if it's value is less than or equal 0.
        • cached:
          • (string): used as the cached name
          • (boolean): create a new instance always if it's false.
          • (object):
            • name (string): used as cached name if exists.
            • popped (boolean): whether popup from cache. default to false.
            • the cache settings(only available if the item is not exists on cache):
              • fixed (bool): set to first level fixed cache if true, defaults to false.
              • expires (int): expires time millisecond. defaults to never expired.
    • get(aName, aOptions): get the singleton object instance(could be from cache)
      • aOptions: (object)
        • cached:
          • (string): used as the cached name
          • (boolean): create a new instance always if it's false.
          • (object):
            • name (string): used as cached name if exists.
            • the cache settings(only available if the item is not exists on cache):
              • fixed (bool): set to first level fixed cache if true, defaults to false.
              • expires (int): expires time millisecond. defaults to never expired.

Usage

developer:

Class usage:

cachedFactory = require 'cache-factory'

class Codec
  cachedFactory Codec

  constructor: (aName, aOptions)->return super
  initialize: (aOptions)->
    @bufferSize = aOptions.bufSize if aOptions
  encode:->
  ...

Ability usage:

factory   = require 'custom-factory'
cacheable = require 'cache-factory'

class Codec
  factory Codec

# add the cacheable ability to Codec factory.
cacheable Codec

user

# get the JsonCodec Class
# note: name is case-sensitive!
TextCodec = Codec['Text']
JsonCodec = Codec['Json']
# or
JsonCodec = TextCodec['Json']

# get the global JsonCodec instance from the Codec
json = Codec('Json', bufSize: 12)
# or:
json = JsonCodec()
text = Codec('Text') # or Codec('utf8')

JsonCodec().should.be.equal Codec('Json')

# create a new JsonCodec instance.
json2 = new JsonCodec(bufSize: 123)

json2.should.not.be.equal json


## get the instance from cache:
json3 = JsonCodec(bufSize:123, cached: "MyJson")
json4 = JsonCodec(bufSize:123, cached: {name: "MyJson"})
json3.should.be.equal json4

json5 = JsonCodec(bufSize:123, cached: true)
json5.should.be.equal json2


json6 = Codec('/Codec/Json/MyJson')
json6.should.be.equal json3

json7 = JsonCodec 'MyJson'
json7.should.be.equal json3