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

destroyer-fast-cache

v1.0.3

Published

The Destroyer cache is a high-performance, in-memory caching solution designed for fast, temporary data storage with support for automatic expiration and simple numeric operations. Built for speed and efficiency, Destroyer uses a priority queue to manage

Downloads

389

Readme

Destroyer Fast Cache

Destroyer is a high-performance, in-memory caching solution for Node.js, built to handle temporary data storage with lightning speed. It supports automatic expiration, numeric operations, and robust error handling, making it perfect for applications requiring quick and easy data access.

Features

  • In-Memory Storage: Store key-value pairs with optional expiration.
  • Automatic Expiration: Remove expired items in the background without blocking operations.
  • Basic Arithmetic: Perform add, sub, mul, and div operations directly on stored values.
  • Error Handling: Input validation and robust error reporting for all operations.
  • Modular Design: Separate modules for each operation, allowing extensibility and easy maintenance.

Installation

To install Destroyer in your project, run:

npm install destroyer-fast-cache

Getting Started

const Destroyer = require('destroyercache');
const cache = new Destroyer();

Basic Commands

Set a Value

Store a value with an optional expiration time.

// Store a value permanently
cache.set("username", "john_doe");

// Store a value with an expiration (10 seconds)
cache.set("session_id", "abc123", { EX: 10 });

Get a Value

Retrieve a value by its key. If the item has expired, get will return null.

console.log(cache.get("username")); // Output: john_doe
setTimeout(() => console.log(cache.get("session_id")), 11000); // Output: null (after 11 seconds)

Delete a Value

Remove a specific key from the cache.

cache.delete("username");
console.log(cache.get("username")); // Output: null

Clear the Cache

Remove all items from the cache.

cache.clear();

Arithmetic Commands

Perform basic arithmetic on numeric values stored in the cache.

Add

Add a number to the stored value.

cache.set("counter", 5);
cache.add("counter", 3);
console.log(cache.get("counter")); // Output: 8

Subtract

Subtract a number from the stored value.

cache.sub("counter", 2);
console.log(cache.get("counter")); // Output: 6

Multiply

Multiply the stored value by a number.

cache.mul("counter", 4);
console.log(cache.get("counter")); // Output: 24

Divide

Divide the stored value by a number.

cache.div("counter", 3);
console.log(cache.get("counter")); // Output: 8

Note: Trying to divide by zero will throw an error.

Error Handling

Destroyer has built-in validation for all commands. Examples:

  • Invalid Key: Passing a non-string key throws an error.
  • Undefined Value: Passing undefined as a value will throw an error.
  • Invalid Arithmetic: Attempting math operations on non-numeric values or dividing by zero throws an error.
try {
  cache.set(123, "value"); // Error: The 'key' must be a string.
} catch (error) {
  console.error(error.message);
}

try {
  cache.div("nonexistent_key", 5); // Error: Value associated with 'nonexistent_key' must be a number.
} catch (error) {
  console.error(error.message);
}