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

swift-process

v1.0.1

Published

Uma biblioteca simples em Node.js para processamento em lote e gerenciamento de cache. Esta biblioteca permite processar dados em lotes e armazenar resultados em cache com expiração configurável.

Downloads

149

Readme

BatchProcessor & CacheProcessor

Uma biblioteca simples em Node.js para processamento em lote e gerenciamento de cache. Esta biblioteca permite processar dados em lotes e armazenar resultados em cache com expiração configurável.

Instalação

Para instalar a biblioteca, você pode usar npm ou yarn. Execute um dos seguintes comandos no seu terminal:

npm install swift-process

ou

yarn add swift-process

Uso

Importando a Biblioteca

const { BatchProcessor, CacheProcessor } = require('swift-process');

BatchProcessor

O BatchProcessor permite processar itens em lotes com um tamanho e um tempo máximo de processamento configuráveis.

Exemplo de Uso do BatchProcessor

const initialItems = ['Item 1', 'Item 2'];
const batchSize = 3;  // Tamanho do lote
const batchTimeInSeconds = 2;  // Tempo máximo em segundos

const batchProcessor = new BatchProcessor(initialItems, batchSize, batchTimeInSeconds);
batchProcessor.add('Item 3');  // Processa automaticamente

// Saída esperada: Processando lote: [ 'Item 1', 'Item 2', 'Item 3' ]

CacheProcessor

O CacheProcessor gerencia o armazenamento em cache de dados, permitindo que você configure um tempo de vida (TTL) para os itens armazenados e adicione mais valores ao cache enquanto ele não expira.

Exemplo de Uso do CacheProcessor

const cacheTTLInSeconds = 10;  // TTL de 10 segundos
const cacheKey = 'uniqueKey';
const cacheValue = 'Resultado processado';

// Inicializa o CacheProcessor com TTL, cacheKey e cacheValue
const cacheProcessor = new CacheProcessor(cacheTTLInSeconds, cacheKey, cacheValue);

console.log('Valor em cache:', cacheProcessor.get(cacheKey));  // Deve mostrar 'Resultado processado'

// Adiciona mais valores ao cache
cacheProcessor.add('anotherKey', 'Outro resultado processado');
console.log('Valor em cache para anotherKey:', cacheProcessor.get('anotherKey'));  // Deve mostrar 'Outro resultado processado'

// Adiciona um novo valor ao cache com a mesma chave
cacheProcessor.add(cacheKey, 'Resultado atualizado');

// Esperar e verificar o cache
setTimeout(() => {
  console.log('Valor após expiração do cache:', cacheProcessor.get(cacheKey));  // Deve mostrar 'Resultado atualizado'
}, 5000);  // 5 segundos

setTimeout(() => {
  console.log('Valor após expiração do cache:', cacheProcessor.get('anotherKey'));  // Deve ser undefined
}, 12000);  // 12 segundos

Funcionalidades

  • BatchProcessor:

    • Adicione itens em lotes e processe-os automaticamente.
    • Defina o tamanho do lote e o tempo máximo para o processamento.
  • CacheProcessor:

    • Armazene dados em cache com um TTL configurável.
    • Renove a expiração de itens existentes ao adicionar novos valores ao cache.
    • Remova itens do cache após a expiração.

Contribuindo

Se você gostaria de contribuir para este projeto, fique à vontade para abrir uma pull request ou relatar problemas no repositório.

Licença

Este projeto está licenciado sob a MIT License.


Sinta-se à vontade para ajustar qualquer parte do README para melhor atender às suas necessidades!