Skip to main content

3 posts tagged with "performance"

View All Tags

How can I route HTTP calls in-process

· 2 min read
Jeremy Scott
Co-founder

Opscotch 3.1.1 expands bootstrap networking so an external-host call can be routed internally instead of going over the network.

This is done by combining:

  • allowExternalHostAccess[].transport = "inProc"
  • allowHttpServerAccess[].inProcOnly = true

How can I listen for TCP data

· 4 min read
Jeremy Scott
Co-founder

Opscotch 3.1.1 adds trigger.tcp, allowing workflows to bind to a bootstrap-declared server and process framed TCP input.

The feature is intentionally narrow: the current trigger supports delimiter-based framing or fixed-length framing, with optional batching controls for delimiter-based traffic.