[jira] [Updated] (IGNITE-6081) .NET: Cannot get from cache values which were stored in cache with PutAll

2017-08-30 Thread Pavel Tupitsyn (JIRA)

 [ 
https://issues.apache.org/jira/browse/IGNITE-6081?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Pavel Tupitsyn updated IGNITE-6081:
---
Summary: .NET: Cannot get from cache values which were stored in cache with 
PutAll  (was: .NET: Cannot get from cache values which were stored in cache 
with PutAll.)

> .NET: Cannot get from cache values which were stored in cache with PutAll
> -
>
> Key: IGNITE-6081
> URL: https://issues.apache.org/jira/browse/IGNITE-6081
> Project: Ignite
>  Issue Type: Bug
>  Components: platforms
>Affects Versions: 2.1
>Reporter: Igor Sapego
>Assignee: Pavel Tupitsyn
>Priority: Critical
> Fix For: 2.3
>
>
> If you try to put multiple non-primitive values with dictionary property to 
> cache using {{PutAll}}, you'd get an exception on attempt to read those 
> values. Code example below:
> {code}
> var entries = new Dictionary();
> for (int i = 0; i < 100; i++)
> entries.Add(i, new SomeType { Id = i });
> var cache = Ignition.GetIgnite().GetCache("CacheName");
> cache.PutAll(entries);
> cache.Get(42);
> {code}
> Pay attention, that {{SomeType}} should have dictionary property.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (IGNITE-6081) .NET: Cannot get from cache values which were stored in cache with PutAll.

2017-08-18 Thread Alexandr Fedotov (JIRA)

 [ 
https://issues.apache.org/jira/browse/IGNITE-6081?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Alexandr Fedotov updated IGNITE-6081:
-
Fix Version/s: 2.2

> .NET: Cannot get from cache values which were stored in cache with PutAll.
> --
>
> Key: IGNITE-6081
> URL: https://issues.apache.org/jira/browse/IGNITE-6081
> Project: Ignite
>  Issue Type: Bug
>  Components: platforms
>Affects Versions: 2.1
>Reporter: Igor Sapego
>Assignee: Pavel Tupitsyn
>Priority: Critical
> Fix For: 2.2
>
>
> If you try to put multiple non-primitive values with dictionary property to 
> cache using {{PutAll}}, you'd get an exception on attempt to read those 
> values. Code example below:
> {code}
> var entries = new Dictionary();
> for (int i = 0; i < 100; i++)
> entries.Add(i, new SomeType { Id = i });
> var cache = Ignition.GetIgnite().GetCache("CacheName");
> cache.PutAll(entries);
> cache.Get(42);
> {code}
> Pay attention, that {{SomeType}} should have dictionary property.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (IGNITE-6081) .NET: Cannot get from cache values which were stored in cache with PutAll.

2017-08-16 Thread Igor Sapego (JIRA)

 [ 
https://issues.apache.org/jira/browse/IGNITE-6081?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Igor Sapego updated IGNITE-6081:

Description: 
If you try to put multiple non-primitive values with dictionary property to 
cache using {{PutAll}}, you'd get an exception on attempt to read those values. 
Code example below:
{code}
var entries = new Dictionary();
for (int i = 0; i < 100; i++)
entries.Add(i, new SomeType { Id = i });

var cache = Ignition.GetIgnite().GetCache("CacheName");
cache.PutAll(entries);

cache.Get(42);
{code}

Pay attention, that {{SomeType}} should have dictionary property.

  was:
If you try to put multiple non-primitive values to cache using {{PutAll}}, 
you'd get an exception on attempt to read those values. Code example below:
{code}
var entries = new Dictionary();
for (int i = 0; i < 100; i++)
entries.Add(i, new SomeType { Id = i });

var cache = Ignition.GetIgnite().GetCache("CacheName");
cache.PutAll(entries);

cache.Get(42);
{code}


> .NET: Cannot get from cache values which were stored in cache with PutAll.
> --
>
> Key: IGNITE-6081
> URL: https://issues.apache.org/jira/browse/IGNITE-6081
> Project: Ignite
>  Issue Type: Bug
>  Components: platforms
>Affects Versions: 2.1
>Reporter: Igor Sapego
>Assignee: Pavel Tupitsyn
>Priority: Critical
>
> If you try to put multiple non-primitive values with dictionary property to 
> cache using {{PutAll}}, you'd get an exception on attempt to read those 
> values. Code example below:
> {code}
> var entries = new Dictionary();
> for (int i = 0; i < 100; i++)
> entries.Add(i, new SomeType { Id = i });
> var cache = Ignition.GetIgnite().GetCache("CacheName");
> cache.PutAll(entries);
> cache.Get(42);
> {code}
> Pay attention, that {{SomeType}} should have dictionary property.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (IGNITE-6081) .NET: Cannot get from cache values which were stored in cache with PutAll.

2017-08-16 Thread Igor Sapego (JIRA)

 [ 
https://issues.apache.org/jira/browse/IGNITE-6081?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Igor Sapego updated IGNITE-6081:

Description: 
If you try to put multiple non-primitive values to cache using {{PutAll}}, 
you'd get an exception on attempt to read those values. Code example below:
{code}
var entries = new Dictionary();
for (int i = 0; i < 100; i++)
entries.Add(i, new SomeType { Id = i });

var cache = Ignition.GetIgnite().GetCache("CacheName");
cache.PutAll(entries);

cache.Get(42);
{code}

  was:
If you try to put multiple non-primitive values to cache using {{PutAll}}, 
you'd get an exception on attempt to read those values. Code example below:
{code}
var entries = new Dictionary();
for (int i = 0; i < 100; i++)
entries.Add(i, new SomeType { Id = i });

var cache = Ignition.GetIgnite().GetCache("CacheName");
cache .PutAll(entries);

cache.Get(42);
{code}


> .NET: Cannot get from cache values which were stored in cache with PutAll.
> --
>
> Key: IGNITE-6081
> URL: https://issues.apache.org/jira/browse/IGNITE-6081
> Project: Ignite
>  Issue Type: Bug
>  Components: platforms
>Affects Versions: 2.1
>Reporter: Igor Sapego
>Assignee: Pavel Tupitsyn
>Priority: Critical
>
> If you try to put multiple non-primitive values to cache using {{PutAll}}, 
> you'd get an exception on attempt to read those values. Code example below:
> {code}
> var entries = new Dictionary();
> for (int i = 0; i < 100; i++)
> entries.Add(i, new SomeType { Id = i });
> var cache = Ignition.GetIgnite().GetCache("CacheName");
> cache.PutAll(entries);
> cache.Get(42);
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (IGNITE-6081) .NET: Cannot get from cache values which were stored in cache with PutAll.

2017-08-16 Thread Igor Sapego (JIRA)

 [ 
https://issues.apache.org/jira/browse/IGNITE-6081?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Igor Sapego updated IGNITE-6081:

Priority: Critical  (was: Major)

> .NET: Cannot get from cache values which were stored in cache with PutAll.
> --
>
> Key: IGNITE-6081
> URL: https://issues.apache.org/jira/browse/IGNITE-6081
> Project: Ignite
>  Issue Type: Bug
>  Components: platforms
>Affects Versions: 2.1
>Reporter: Igor Sapego
>Assignee: Pavel Tupitsyn
>Priority: Critical
>
> If you try to put multiple non-primitive values to cache using {{PutAll}}, 
> you'd get an exception on attempt to read those values. Code example below:
> {code}
> var entries = new Dictionary();
> for (int i = 0; i < 100; i++)
> entries.Add(i, new SomeType { Id = i });
> var cache = Ignition.GetIgnite().GetCache("CacheName");
> cache .PutAll(entries);
> cache.Get(42);
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)