[jira] [Commented] (ARROW-2364) [Plasma] PlasmaClient::Get() could take vector of object ids

2018-04-05 Thread Antoine Pitrou (JIRA)

[ 
https://issues.apache.org/jira/browse/ARROW-2364?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16427164#comment-16427164
 ] 

Antoine Pitrou commented on ARROW-2364:
---

This was resolved in ARROW-2195.

> [Plasma] PlasmaClient::Get() could take vector of object ids
> 
>
> Key: ARROW-2364
> URL: https://issues.apache.org/jira/browse/ARROW-2364
> Project: Apache Arrow
>  Issue Type: Wish
>  Components: Plasma (C++)
>Affects Versions: 0.9.0
>Reporter: Antoine Pitrou
>Priority: Major
>
> It would be mode modern C++ than taking a raw pointer + number of elements.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (ARROW-2364) [Plasma] PlasmaClient::Get() could take vector of object ids

2018-03-29 Thread Antoine Pitrou (JIRA)

[ 
https://issues.apache.org/jira/browse/ARROW-2364?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16419258#comment-16419258
 ] 

Antoine Pitrou commented on ARROW-2364:
---

Yes, iterators are nice, but the (begin, pair) idiom is more cumbersome than 
passing a container. Apparently {{span}} is not standard C++ yet.

> [Plasma] PlasmaClient::Get() could take vector of object ids
> 
>
> Key: ARROW-2364
> URL: https://issues.apache.org/jira/browse/ARROW-2364
> Project: Apache Arrow
>  Issue Type: Wish
>  Components: Plasma (C++)
>Affects Versions: 0.9.0
>Reporter: Antoine Pitrou
>Priority: Major
>
> It would be mode modern C++ than taking a raw pointer + number of elements.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (ARROW-2364) [Plasma] PlasmaClient::Get() could take vector of object ids

2018-03-29 Thread Phillip Cloud (JIRA)

[ 
https://issues.apache.org/jira/browse/ARROW-2364?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16419243#comment-16419243
 ] 

Phillip Cloud commented on ARROW-2364:
--

Iterators are also another common modern C++ pattern that support both vectors, 
pointers, and a host of other containers. At some point we'll probably want a 
`span` container that is essentially a C++ iterator-interface-compatible 
pointer-plus-length abstraction. Things like a slice of a string not owned by 
the caller become much easier to deal with.

> [Plasma] PlasmaClient::Get() could take vector of object ids
> 
>
> Key: ARROW-2364
> URL: https://issues.apache.org/jira/browse/ARROW-2364
> Project: Apache Arrow
>  Issue Type: Wish
>  Components: Plasma (C++)
>Affects Versions: 0.9.0
>Reporter: Antoine Pitrou
>Priority: Major
>
> It would be mode modern C++ than taking a raw pointer + number of elements.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)