This page is no longer maintained — Please continue to the home page at www.scala-lang.org

lib.cache: my new simple pure Scala solution for caching Options

1 reply
Dmitry Grigoriev
Joined: 2009-07-12,
User offline. Last seen 42 years 45 weeks ago.

(cross-post from scala-user)

Hello all,

Subj: http://dimgel.ru/lib.cache/

Simplest use case:

object ConfigDAL {
private val cache = new ValueCache[Config]
def data = cache {
// load Config instance from database and return
}
def data=(x: Config) {
// update database
cache.clear() // or optimized: cache.set(x)
}
}

I use it in web development to cache Squeryl query results, although
it does not depend on Squeryl or anything. Please check. If you think
it's worth publishing on scala-tools.org, please vote here:
http://groups.google.com/group/ru-dimgel-lib-cache/browse_thread/thread/...

Dmitry Grigoriev
Joined: 2009-07-12,
User offline. Last seen 42 years 45 weeks ago.
Re: lib.cache: my new simple pure Scala solution for caching Opt

Damned copy-paster. Last word "Options" in subject was copied
occasionally.

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland