You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2016/08/05 08:06:20 UTC

[jira] [Commented] (IGNITE-1896) .Net: Improve query API

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

ASF GitHub Bot commented on IGNITE-1896:
----------------------------------------

Github user ptupitsyn closed the pull request at:

    https://github.com/apache/ignite/pull/231


> .Net: Improve query API
> -----------------------
>
>                 Key: IGNITE-1896
>                 URL: https://issues.apache.org/jira/browse/IGNITE-1896
>             Project: Ignite
>          Issue Type: Improvement
>          Components: platforms
>    Affects Versions: 1.1.4
>            Reporter: Pavel Tupitsyn
>            Assignee: Vladimir Ozerov
>             Fix For: 1.6
>
>
> Current API is very clumsy.
> Cache is generic, however we require the user to specify query type explicitly.
> There are cases when query type is a string and/or is different from current cache generic type, so the current API has to be kept.
> However, we should provide simple methods with generic inference:
> {code}
>         IQueryCursor<ICacheEntry<TK, TV>> ScanQuery(ICacheEntryFilter<TK, TV> filter);
>         IQueryCursor<ICacheEntry<TK, TV>> SqlQuery(string sql, params object[] args);
>         IQueryCursor<ICacheEntry<TK, TV>> SqlQuery(string sql, bool local, params object[] args);
>         IQueryCursor<ICacheEntry<TK, TV>> TextQuery(string text);
>         IQueryCursor<ICacheEntry<TK, TV>> TextQuery(string text, bool local);
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)