<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    So, it would be interesting to run a version of something I posted
    yesterday:<br>
    <br>
    <font face="Georgia">    | nums procs big |<br>
          <br>
          nums := OrderedCollection new.<br>
          big := OrderedCollection new.<br>
          procs := (1 to: 3) collect: [ : i |<br>
              nums add: 0.<br>
              [<br>
                  10 timesRepeat: [<br>
                      [10000 factorial] timeToRun.<br>
                      nums at: i put: (nums at: i) + 1.<br>
                      big add: nums asArray asString,' ',Time now
      asString.<br>
                  ].<br>
              ].<br>
          ].<br>
          procs do: [ : e | e forkAt: Processor userBackgroundPriority].<br>
          big inspect<br>
    </font><br>
    Three processes at the same priority - on Squeak and Pharo, time
    gets shared between the three somewhat equally. What happens in
    VAST?<br>
    <br>
    contents of "big" in Squeak:<br>
    <br>
    (0 0 1) 9:11:58.022 am <br>
    (0 1 1) 9:11:58.053 am <br>
    (1 1 1) 9:11:58.388 am <br>
    (1 1 2) 9:11:58.974 am <br>
    (2 1 2) 9:11:59.06 am <br>
    (2 2 2) 9:11:59.078 am <br>
    (2 2 3) 9:11:59.71 am <br>
    (3 2 3) 9:12:00.044 am <br>
    (3 3 3) 9:12:00.06 am <br>
    (3 3 4) 9:12:00.625 am <br>
    (4 3 4) 9:12:00.663 am <br>
    (4 4 4) 9:12:00.739 am <br>
    (5 4 4) 9:12:01.274 am <br>
    (5 4 5) 9:12:01.57 am <br>
    (5 5 5) 9:12:01.657 am <br>
    (5 5 6) 9:12:02.135 am <br>
    (6 5 6) 9:12:02.216 am <br>
    (6 6 6) 9:12:02.252 am <br>
    (6 7 6) 9:12:02.88 am <br>
    (6 7 7) 9:12:03.436 am <br>
    (7 7 7) 9:12:03.575 am <br>
    (7 8 7) 9:12:03.66 am <br>
    (7 8 8) 9:12:04.082 am <br>
    (8 8 8) 9:12:04.158 am <br>
    (8 9 8) 9:12:04.237 am <br>
    (8 9 9) 9:12:04.975 am <br>
    (9 9 9) 9:12:05.104 am <br>
    (9 10 9) 9:12:05.127 am <br>
    (9 10 10) 9:12:05.457 am <br>
    (10 10 10) 9:12:05.472 am<br>
    <br>
    <br>
    <div class="moz-cite-prefix">On 3/11/15 8:54 AM, wilwarin wrote:<br>
    </div>
    <blockquote cite="mid:1426078494720-4811195.post@n4.nabble.com"
      type="cite">
      <pre wrap="">Thank you very much, Bob.

</pre>
      <blockquote type="cite">
        <pre wrap="">So, did your previous message indicate that this was still causing 
a problem in VAST? And the problem is when your "DO SOME MATH" 
is running, other requests to Seaside are not processed quickly/at all? 
</pre>
      </blockquote>
      <pre wrap="">
Yes, exactly. They are not processed at all.

</pre>
      <blockquote type="cite">
        <pre wrap="">How does this compare to your experience in VAST and Pharo?
</pre>
      </blockquote>
      <pre wrap="">
In case of Pharo, my experience is similar with yours (cca. 1 second delay).
In case of VAST, I can see the time of start of the second request is equal
to the time of finish of the first one.





--
View this message in context: <a class="moz-txt-link-freetext" href="http://forum.world.st/Concurrent-requests-from-multiple-sessions-tp4809929p4811195.html">http://forum.world.st/Concurrent-requests-from-multiple-sessions-tp4809929p4811195.html</a>
Sent from the Seaside General mailing list archive at Nabble.com.
_______________________________________________
seaside mailing list
<a class="moz-txt-link-abbreviated" href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a>
<a class="moz-txt-link-freetext" href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a>

</pre>
    </blockquote>
    <br>
  </body>
</html>