zsh-users
 help / color / mirror / code / Atom feed
From: Alexy Khrabrov <deliverable@gmail.com>
To: zsh-users@sunsite.dk
Subject: serverizing a fat process with named pipes
Date: Mon, 15 Jun 2009 23:17:00 -0400	[thread overview]
Message-ID: <7c737f300906152017m7776d596he8a1251c9e1279b8@mail.gmail.com> (raw)

I have a heavy process, an English parser loading megabytes of models,
and then reading stdin, sentence per line, outputting the parsed text
to the stdout.  How do I properly serverize it -- running in the
background with <p1 >p2, those created with mkfifo p1 p2?  Looks like
unless I wrap that in a kind of a loop, the processes exit at once.
First I did this simulation:

mkfifo p1 p1
cat <p1 >p2 &
cat p2 &
echo hi > p1

This does print "hi" and then both backgrounds exit.  If I wrap them
in while true; do ... done & (& from the original goes outside), the
simple one looks running continuously, but the parser takes a while
starting up every time, apparently...

Cheers,
Alexy


         reply	other threads:[~2009-06-16  3:17 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <deliverable@gmail.com>
2005-08-10 19:18 ` rm nonexisting*; alias with parameters? Deliverable Mail
2005-08-10 20:06   ` Peter Stephenson
2005-08-10 20:31     ` Deliverable Mail
2005-08-10 22:51       ` Mikael Magnusson
2005-08-11  3:17         ` "splitting prpblem" Meino Christian Cramer
2005-08-11  8:40           ` Michal Politowski
2005-08-11 17:01             ` Meino Christian Cramer
2009-06-16  3:17 ` Alexy Khrabrov [this message]
2009-06-16 20:29   ` serverizing a fat process with named pipes Peter Stephenson
2009-06-17  0:47   ` Bart Schaefer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7c737f300906152017m7776d596he8a1251c9e1279b8@mail.gmail.com \
    --to=deliverable@gmail.com \
    --cc=zsh-users@sunsite.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).