Tagged Questions

RDMA refers to "Remote Direct Memory Access," which is a set of networking technologies typically used for high performance, low latency communication.

learn more… | top users | synonyms

3
votes
1answer
56 views

posted recv buffers returned syncronously or async after calling rdma_disconnect()

When calling rdma_disconnect(), do I get completion queue events for all posted recv work requests before rdma_disconnect() returns, or should I expect them to come in after rdma_disconnect() has ...
1
vote
3answers
146 views

How to use DMA or RDMA in java?

"DMA" here means: Direct memory access, and "RDMA" is: remote direct memory access. I used Java to created an application to transfer stock data, but I found the latency is bigger than I expected. I ...
0
votes
2answers
34 views

Programmatically retrieve infiniband device ip address

I'm trying to find programmatically the inet address of an Infiniband interface whose name is not know a priori. I'm on Linux, and I would like to avoid the parsing of ifconfig (8) output. I've ...
0
votes
2answers
401 views

Are there any mechanisms available to use LDMA or RDMA on Windows CLR based platform?

I want to be able to make use of LDMA or RDMA on a Windows CLR-based application (.NET). I have low-latency applications being developed with C++ and those applications will receive their data using ...