Giter Club home page Giter Club logo

caching's Introduction

Labijie Caching

A cache structure that supports expiration on a per-key basis.

Hex.pm Maven metadata URL

All of the jar packages has been uploaded to the maven central.

add depenedency in gradle project

Use memory cahce only:

dependencies {
    compile "com.labijie:labijie-caching:1.0"
}

for redis:

dependencies {
    compile "com.labijie:labijie-caching-redis:1.0"
}

Quick Start

You only need to use the ICacheManager interface, which can be easily integrated into the IOC container, such as spring. use

ICacheManager memoryCache = new MemoryCacheManager(new MemoryCacheOptions());

//sliding time expires
memoryCache.set("2", new Object(), 3000L, true);

//absolute time expires
memoryCache.set("a", new Object(), 1000L, false);

//get
memoryCache.get("a")

use SingleRedisCacheManager for redis support

Maven local usage

install to maven local repo:

gradle uploadArchives

install to public maven

modify build.gradle and put your maven server (such as nexus server):

for example , you server is 'https://nexus-server/', user name is [my], password is [mypwd]

  1. modify build.gradle:
mavenDeployer {
                        pom.project {
                            artifactId "labijie-caching" + (project.name == "core" ?  "" : "-" + project.name)
                            version project.rootProject.version
                        }

                        snapshotRepository(url: "https://nexus-server/") {
                            authentication(userName: u, password: p)
                        }

                        repository(url: "https://nexus-server/") {
                            authentication(userName: u, password: p)
                        }
                    }
  1. run command in terminal

gradle -Dmu="my" -Dmp="mypwd" uploadArchives

caching's People

Contributors

endink avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.