# RPC Examples (/sdks/rust/how-to/rpc)



Commands and queries: request–reply, timeouts, groups, and caching.

[RPC getting started →](/learn/rpc/getting-started)

<Cards>
  <Card title="Send Command" href="/sdks/rust/tutorials/command-send">
    Send a command and receive execution result
  </Card>

  <Card title="Handle Command" href="/sdks/rust/how-to/rpc/command-handle">
    Subscribe to and handle incoming commands
  </Card>

  <Card title="Command Timeout" href="/sdks/rust/how-to/rpc/command-timeout">
    Configure command timeout behavior
  </Card>

  <Card title="Command Group" href="/sdks/rust/how-to/rpc/command-group">
    Load-balanced command handling via consumer groups
  </Card>

  <Card title="Send Query" href="/sdks/rust/tutorials/query-send">
    Send a query and receive response data
  </Card>

  <Card title="Handle Query" href="/sdks/rust/how-to/rpc/query-handle">
    Subscribe to and handle incoming queries
  </Card>

  <Card title="Cached Query" href="/sdks/rust/how-to/rpc/query-cached">
    Server-side response caching for queries
  </Card>

  <Card title="Query Group" href="/sdks/rust/how-to/rpc/query-group">
    Load-balanced query handling via consumer groups
  </Card>
</Cards>
