Giter VIP home page Giter VIP logo

slurry's People

Contributors

michael-houmaark avatar nmwael avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

khouloudsa

slurry's Issues

TTL Configuration missing

In the currently available 1.0-SNAPSHOT version there is no way to configure 
ttl, but the site says otherwise.

Original issue reported on code.google.com by [email protected] on 27 Nov 2010 at 10:42

[Quartz4Guice] Reduce the number of possible StdSchedulerFactory instances

_Potentially_, the org.slurry.quartz4guice.scheduling.ScheduleFactoryProvider 
can produce more than one org.quartz.SchedulerFactory instance, since ro each 
org.slurry.quartz4guice.scheduling.ScheduleFactoryProvider#get() call it 
creates a new SchedulerFactory instance.
Please see attached patch.

Original issue reported on code.google.com by [email protected] on 6 Jul 2010 at 2:11

Attachments:

Improve cache name to support multiple inheritance

Change 
private String getCacheName(MethodInvocation invocation) {
    return invocation.getMethod().toString();
  }

private String getCacheName(MethodInvocation invocation) {
    return invocation.getMethod().getClass()+" "+ 
invocation.getMethod().toString();
  }

Original issue reported on code.google.com by [email protected] on 19 Oct 2011 at 9:31

Wrong parent version in cache4guice pom files in Maven release repository

What steps will reproduce the problem?
1. Add Slurry release repository to project's pom.xml

<repository>
  <id>slurry-release</id>
  <name>Slurry Release</name>
  <url>http://slurry.googlecode.com/svn/maven/release</url>
</repository>

2. Specify cache4guice as dependency

<dependency>
  <groupId>org.slurry</groupId>
  <artifactId>cache4guice</artifactId>
  <version>1.0.7</version>
</dependency>

3. mvn clean install


What is the expected output? What do you see instead?

Expected: build successful
Instead: Project ID: org.slurry:cache4guice:jar:1.0.7
Reason: Cannot find parent: org.slurry:slurryparent for project: 
org.slurry:cache4guice:jar:1.0.7 for project org.slurry:cache4guice:jar:1.0.7


What version of the product are you using? On what operating system?

maven2 on Ubuntu 12.04

I guess that 
http://slurry.googlecode.com/svn/maven/release/org/slurry/cache4guice/1.0.7/cach
e4guice-1.0.7.pom contains wrong parent version that should not end with 
"SNAPSHOT" as it is Maven *release* repoository.

<parent>
  <artifactId>slurryparent</artifactId>
  <groupId>org.slurry</groupId>
  <relativePath>../../pom.xml</relativePath>
  <version>1.0-SNAPSHOT</version>
</parent>

Original issue reported on code.google.com by valdiic on 4 Dec 2013 at 3:13

String key generator fails with NPE if any field value is null

My workaround:

/**
 * {@code CacheKeyGenerator} implementation that avoids Slurry's {@code StringBasedKeyGenerator}
 * null pointer exceptions on null key fields.
 */
public class StringCacheKeyGenerator extends BaseKeyGenerator {

  @Override
  protected String getKey(Object o) {
    // The fix is to not use toString()
    return ":" + o;
  }

}


Original issue reported on code.google.com by [email protected] on 3 May 2013 at 1:38

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.