MVN

ashkay : ashkay

Maven & Gradle

Sep 20, 2005

Ashkay Java Caching · How many classes does it take to make a cache? 60? 80? You might think so if you look at the other caches on the market. Ashkay is a streamlined, simple cache that in many ways is more powerful than the other mainstream caches. Ashkay is a strategy based caching tool. In most cases, you might be using a configuration file to tell the cache what rules it should obey. Or, you might just be setting properties on the cache. I have never liked this model as it limits me, the user of the cache to strategies the developer decided were important. Instead, Ashkay lets you choose the strategy(ies) to use when caching certain objects. Of course, a few of the most handy strategies are pre-packaged, but implementing a new one is a simple as can be. Ashkay is a fork of <a href="http://xot.sf.net">xot</a> caching code. Made more sense on its own.

<dependency>
    <groupId>ashkay</groupId>
    <artifactId>ashkay</artifactId>
    <version>0.6</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of ashkay : ashkay to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.6

All Versions

Choose a version of ashkay : ashkay to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.6
ashkay-0.6

How to add a dependency to Maven

Add the following ashkay : ashkay maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>ashkay</groupId>
    <artifactId>ashkay</artifactId>
    <version>0.6</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following ashkay : ashkay gradle dependency to your build.gradle file:

implementation 'ashkay:ashkay:0.6'

Gradle Kotlin DSL: Add the following ashkay : ashkay gradle kotlin dependency to your build.gradle.kts file:

implementation("ashkay:ashkay:0.6")

How to add a dependency to SBT Scala

SBT Scala: Add the following ashkay : ashkay sbt scala dependency to your build.sbt file:

libraryDependencies += "ashkay" % "ashkay" % "0.6"

Advertisement