是否支持同一个类内部不同方法调用时也走缓存
Open
TODO
- Dominant language
- Java
- Stars
- 5.6k
- Forks
- 1.1k
- PR merge metrics
- No merged PRs in 30d
Description
classe A{
method_1 ( ){
return method_2 ( );
}
@Cached
method_2 ( ){
}
}
spring 原有的cache模块可以用AspectJ+LTW实现类内部方法相互调用也走缓存。jetcache是否支持?
Contributor guide
No contributing guide indexed for this repository
Research direction
Start with JetCache's @Cached interception path and the class-internal method call example in the issue; compare the behavior with Spring Cache's AspectJ+LTW approach. Done means establishing whether method_1 calling method_2 applies caching to method_2 and recording or implementing the supported behavior.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java, spring
- Domain
- backend
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100