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/05/02 13:30:04 UTC

[jira] [Issue Comment Deleted] (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:all-tabpanel ]

Ryabov Dmitrii updated IGNITE-4437:
-----------------------------------
    Comment: was deleted

(was: [~ascherbakov], do you mean change code like 
{code:java}
void method() {
    GridCacheUtils.outTx(...);
}
{code}
to something like that?
{code:java}
void method() {
    try (Transaction tx = ctx.cache().txStart(...)) {...}
}
{code}
And use system 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
>            Assignee: Ryabov Dmitrii
>              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)