[jira] [Created] (IGNITE-13855) Integration with micrometer.io as part of integration with spring-boot

2020-12-15 Thread Tanmay Ambre (Jira)
Tanmay Ambre created IGNITE-13855: - Summary: Integration with micrometer.io as part of integration with spring-boot Key: IGNITE-13855 URL: https://issues.apache.org/jira/browse/IGNITE-13855 Project

Re: integration with spring boot

2015-11-05 Thread Andrey Gura
Oops, I didn't noticed. Ok, it means we already have this integration. On Thu, Nov 5, 2015 at 6:54 PM, Valentin Kulichenko < valentin.kuliche...@gmail.com> wrote: > Andrey, we already have this. See SpringCacheManager class. > > -Val > > On Thursday, November 5, 2015, Andrey Gura

Re: integration with spring boot

2015-11-05 Thread Andrey Gura
We should not support this annotations. All listed annotation (excluding @CacheConfig) allows user to manage caching behaviour (eg. eviction on cache update) and doesn't affect CacheManager implementation. @CacheConfig just defines cache configuration that will be used for particular Spring

Re: integration with spring boot

2015-11-05 Thread Andrey Gura
We can do more. Spring.io allow contribute own guidelines. See https://github.com/spring-guides/getting-started-guides/wiki On Thu, Nov 5, 2015 at 10:12 PM, Dmitriy Setrakyan <dsetrak...@apache.org> wrote: > I still think that integration with spring-boot and spring caching is part >

Re: integration with spring boot

2015-11-05 Thread Valentin Kulichenko
See my comments inline. Also note that we have a documentation page for this feature: https://apacheignite.readme.io/docs/spring-caching On Thu, Nov 5, 2015 at 10:10 AM, Andrey Gura wrote: > We should not support this annotations. All listed annotation (excluding >

Re: integration with spring boot

2015-11-05 Thread Valentin Kulichenko
No, these are different Spring projects. Actually it looks like Boot is just a tool for faster bootstrap of Spring-enabled projects (I looked through the docs really briefly, so can miss something). Dmitry, what kind of integration do you have in mind? -Val On Wednesday, November 4, 2015,

Re: integration with spring boot

2015-11-05 Thread Andrey Gura
Hi, @Cacheable is not Spring Boot annotation. It's part of spring-context module. If client want use @Cacheable annotation in Spring based project he should configure cache manager in application context. Cache manager should implement org.springframework.cache.CacheManager interface. So we

Re: integration with spring boot

2015-11-05 Thread Valentin Kulichenko
Andrey, we already have this. See SpringCacheManager class. -Val On Thursday, November 5, 2015, Andrey Gura wrote: > Hi, > > @Cacheable is not Spring Boot annotation. It's part of spring-context > module. > > If client want use @Cacheable annotation in Spring based project

integration with spring boot

2015-11-04 Thread Dmitriy Setrakyan
Igniters, I am aware that Ignite supports Spring @Cacheable annotation. Does it mean that Ignite integrated with Spring boot? http://docs.spring.io/spring-boot/docs/1.3.0.M1/reference/html/boot-features-caching.html If not, we should definitely add such integration. D.