RE: What exactly does "put" do on Server?

2021-04-21 Thread Ralph DiMola via use-livecode
7;m curious... Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Richard Gaskin via use-livecode Sent: Tuesday, April 20, 2021 9:02 PM To: use-livecode@lists.runrev.com

Re: What exactly does "put" do on Server?

2021-04-20 Thread Mark Wieder via use-livecode
On 4/20/21 6:01 PM, Richard Gaskin via use-livecode wrote: Postman shows a single reply to the client from Apache. strace on the server shows each "put" implemented at the system level as a write to stdout. So it looks to me like Apache buffers writes it receives and sends all of it to the c

Re: What exactly does "put" do on Server?

2021-04-20 Thread Richard Gaskin via use-livecode
Postman shows a single reply to the client from Apache. strace on the server shows each "put" implemented at the system level as a write to stdout. So it looks to me like Apache buffers writes it receives and sends all of it to the client in one go, with a header that accurately accounts for

Re: What exactly does "put" do on Server?

2021-04-20 Thread Tom Glod via use-livecode
Following, I've wondered this, but never had enough motivation to test it. On Tue, Apr 20, 2021 at 4:00 PM Richard Gaskin via use-livecode < use-livecode@lists.runrev.com> wrote: > Normally, HTTP is used for request-reply patterns, where the server > receives the request, does some processing to