If you load the libraries that you need and save your image, then
Factor will load pretty fast.

If you want it to load faster, make a smaller image. You can bootstrap
a smaller image by omitting the UI, tools, and docs, for example:

./factor -i=boot.x86.32.image -output-image=smaller.image
-include="math threads compiler io unicode"

You could also omit io, threads or unicode, depending on the nature of
the scripting involved.

Running factor with a file on the command line runs it then exits when
its done, and arguments supplied after the file name can be accessed
by reading the command-line variable:

./factor my-script.factor arg1 arg2 ...

You can combine this with a custom image:

./factor -i=smaller.image my-script.factor ...

Slava

On Fri, May 1, 2009 at 9:53 AM, zimbatm <zimb...@oree.ch> wrote:
> In the same wave, is the VM light enough to be run and thrown away
> quickly, for implementing unix tools ? I'm thinking of filters for
> unix pipes for example
>
> ------------------------------------------------------------------------------
> Register Now & Save for Velocity, the Web Performance & Operations
> Conference from O'Reilly Media. Velocity features a full day of
> expert-led, hands-on workshops and two days of sessions from industry
> leaders in dedicated Performance & Operations tracks. Use code vel09scf
> and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
> _______________________________________________
> Factor-talk mailing list
> Factor-talk@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/factor-talk
>

------------------------------------------------------------------------------
Register Now & Save for Velocity, the Web Performance & Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance & Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
_______________________________________________
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk

Reply via email to