You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Ryabov Dmitrii (JIRA)" <ji...@apache.org> on 2017/04/27 14:34:04 UTC

[jira] [Commented] (IGNITE-4437) Make sure data structures do not use outTx call

    [ https://issues.apache.org/jira/browse/IGNITE-4437?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15986734#comment-15986734 ] 

Ryabov Dmitrii commented on IGNITE-4437:
----------------------------------------

[~ascherbakov], do you mean change code like 
{code:java}
void method() {
    GridCacheUtils.outTx(...);
}
{code}
to
{code:java}
void method() {
    try (Transaction tx = ctx.cache().txStart(...)) {...}
}
{code}
Because system cache is nonuser cache?

> Make sure data structures do not use outTx call
> -----------------------------------------------
>
>                 Key: IGNITE-4437
>                 URL: https://issues.apache.org/jira/browse/IGNITE-4437
>             Project: Ignite
>          Issue Type: Improvement
>          Components: cache, data structures
>            Reporter: Alexei Scherbakov
>              Labels: newbie
>             Fix For: 2.1
>
>
> Ignite's data structures use outTx call to avoid an intersection with user transaction.
> This is no longer necessary, because system and user transactions are now separated.
> Need to get rid of these calls.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)