[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.rt.eclipselink] Re: Cache issue

That is odd, the cache should always be up to date.  It could be an issue with you save() method.  It use persist() which in JPA is only valid for saving new objects, if it is an existing object then you must use merge().

To disable to cache do not set the type to none, instead use,

"eclipselink.cache.shared.default"="false"