Tagged Questions
The oscache tag has no wiki summary.
9
votes
8answers
9k views
OSCache vs. EHCache
Never used a cache like this before. The problem is that I want to load 500,000 + records out of a database and do some selecting/filtering wicked fast.
I'm thinking about using a cache, and ...
2
votes
2answers
308 views
How to control logging by 3rd-party components in webapp in Tomcat 5.5?
We are using Tomcat 5.5 on Linux. Our webapp uses log4j for its logging (functionally-based and not many loggers), and intentionally sets the additivity of the loggers to false. Our loggers log to ...
2
votes
2answers
237 views
When to go for Caching/Second level cache? Any practical scenario with specifics?
I'm working on a web based application that belongs to an automobil manufacturer, developed in Spring-Hibernate with MS SQL Server 2005 database.
Through this application, end users can request for ...
1
vote
1answer
278 views
Issue about Using Struts2 Include Tag in Freemarker File
Here is my scene:
1、In action the variable id is declear like blow(TestAction.java):
…
private Integer id;
public Integer getId() {
return id;
}
public void setId(Integer id) {
...
1
vote
1answer
348 views
Specifying global EhCache capacity
I am trying to migrate my project code from OSCache to EhCache.
We have used OSCache not only as a second-level Hibernate cache provider but also to store other objects of a different nature. They ...
1
vote
1answer
298 views
Caching Pattern: What do you call (and how do you replace) OpenSymphony OsCache “group” paradigm
A caching issue for you cache gurus.
Context
We have used OpenSymphony's OsCache for several years and consider moving to a better/stronger/faster/actively-developed caching product.
Problem
We ...
1
vote
1answer
1k views
Setting refresh-policies in Ehcache
Is there any to specify a data refresh policy in Ehcache? I am currently migrating an application from OSCache to Ehcache and I can't seem to find any way to specify when an element needs refreshing, ...
0
votes
1answer
142 views
OSCache jsp tag to first return from cache and then clear
I am using OSCache on my jsps with tags. To improve performance, I am caching some of the jsp using the oscache jsp tags.
I would like the cache to always return the cached result and then rebuild ...
0
votes
0answers
113 views
oscache with jgroups
I added oscache.properties and which has one line
cache.event.listeners=com.opensymphony.oscache.plugins.clustersupport.JavaGroupsBroadcastingListener
and added all jars needed. and start the ...
0
votes
1answer
327 views
Hibernate's cluster aware caches in conjunction with WebSphere Application Server
The title comes from the following link: Using Spring and Hibernate with WebSphere Application Server
Wonder if that is still a true statement?
I am interested in moving the application from using ...
0
votes
1answer
230 views
how to config grails1.2 with oscache?
I do this :
DataSource.groovy:
hibernate {
cache.use_second_level_cache=true
cache.use_query_cache=true
cache.provider_class='com.opensymphony.oscache.hibernate.OSCacheProvider'
}
and ...
0
votes
2answers
779 views
How do I set an cache time for objects in OSCache using spring-modules?
I have an application in need of some caching, and for some of the semi-static data, I want them to stay in the cache a maximum amount of time (for instance 10 minutes) before being refreshed. My ...