Toggle navigation
Home
org.apache.ignite.IgniteCache to org.apache.ignite.internal.processors.cache.GridCacheAdapter
No. of Instances - 8
No. of Commits - 4
No. of Projects - {'ignite'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Add or Remove Method invocation
cctx.kernalContext().cache().jcache(cctx.name())
to
cctx.kernalContext().cache().internalCache(cctx.name())
F.first(cache.query(new SqlFieldsQuery("explain select * from EnemyCamp " + "where coords && 'POINT(25 75)'")).getAll()).get(0).toString().contains("coords_idx")
to
F.first(cache.queries().createSqlFieldsQuery("explain select * from EnemyCamp " + "where coords && 'POINT(25 75)'").execute().get()).get(0).toString().contains("coords_idx")
Cascading Type Change (Different)
IgniteCache<Integer,EnemyCamp>
to
GridCache<Integer,EnemyCamp>
IgniteCache<Integer,EnemyCamp>
to
GridCache<Integer,EnemyCamp>
IgniteCache<Integer,EnemyCamp>
to
GridCache<Integer,EnemyCamp>
Update argument list (Method invocation)
remove
to
remove