Skip to content

Latest commit

 

History

History
239 lines (201 loc) · 12.2 KB

caching.md

File metadata and controls

239 lines (201 loc) · 12.2 KB

Bookmarks tagged [caching]

http://www.ehcache.org/

Java's most widely used cache.


https://github.com/jaysonsantos/bmemcached-rs

Memcached library written in pure rust


https://github.com/jaemk/cached

Simple function caching/memoization


https://github.com/aisk/rust-memcache

Memcached client library


https://github.com/rails/actionpack-action_caching

Action caching for Action Pack.


https://github.com/mperham/dalli

A high performance pure Ruby client for accessing memcached servers.


https://github.com/artsy/garner

A set of Rack middleware and cache helpers that implement various caching strategies.


https://github.com/Shopify/identity_cache

A blob level caching solution to plug into ActiveRecord.


https://github.com/IFTTT/kashmir

Kashmir is a Ruby DSL that makes serializing and caching objects a snap.


https://github.com/sorentwo/readthis

High performance, pooled, ActiveSupport compliant caching with Redis.


https://github.com/orslumen/record-cache

Cache Active Model Records in Rails 3.


http://redis-store.org/

Redis Store provides a full set of stores (Cache, I18n, Session, HTTP Cache) for modern Ruby frameworks like: Ruby on Rails, Sinatra, Rack, Rack::Cache and I18n. It supports object marshalling, timeou...


https://github.com/hooopo/second_level_cache

Write-Through and Read-Through caching library for ActiveRecord 4.


https://github.com/bbangert/beaker

A WSGI middleware for sessions and caching.


https://github.com/django-cache-machine/django-cache-machine

Automatic caching and invalidation for Django models.


https://github.com/Suor/django-cacheops

A slick ORM cache with automatic granular event-driven invalidation.


http://dogpilecache.readthedocs.io/en/latest/

dogpile.cache is next generation replacement for Beaker made by same authors.


https://pypi.python.org/pypi/HermesCache

Python caching library with tag-based invalidation and dogpile effect prevention.


https://github.com/lericson/pylibmc

A Python wrapper around the libmemcached interface.


http://www.grantjenks.com/docs/diskcache/

SQLite and file backed cache backend with faster lookups than memcached and redis.


https://cache2k.org

In-memory high performance caching library.


http://www.ehcache.org

Distributed general-purpose cache.


http://infinispan.org

Highly concurrent key/value datastore used for caching.


https://blog.thoughtram.io/angular/2018/03/05/advanced-caching-with-rxjs.html

When building web applications, performance should always be a top priority. One very efficient way to optimize the performance of our applications and improve the experience of our site is to use cac...


https://github.com/BryanDonovan/node-cache-manager

Cache module for Node.JS.


http://www.codingpedia.org/ama/how-to-build-and-clear-a-reference-data-cache-with-singleton-ejbs-and...

In one of my projects I had a requirement to load reference data from several sources in a Java EE 6 WebLogic environment, with EclipseLink as ORM framework. Since I couldn’t find an annotation in the...


https://github.com/ptarjan/node-cache

A simple in-memory cache for node.js


https://github.com/ben-manes/caffeine

A high performance caching library for Java 8


https://varnish-cache.org/

This is Varnish Cache, the high-performance HTTP accelerator.


https://github.com/google/guava/wiki/CachesExplained

Wiki page with examples of using the caching of guava


https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control

The Cache-Control general-header field is used to specify directives for caching mechanisms in both, requests and responses. Caching directives are unidirectional, meaning that a given directive in ...


http://infinispan.org/

Infinispan is a distributed in-memory key/value data store with optional schema, available under the Apache License 2.0.


https://redis.io/

Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache and message broker. It supports data structures such as strings, hashes, lists, sets, sorted sets with...


http://memcached.org/

Free & open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.

Memcached...