Howie,

How to setup Ims POST settings in our Ims SE pkg has caused much debate in
my office, so I wrote a little app(below) to account for how we think it
works.  First, let me know if we're correct in our formulation.  If we are,
I've got a couple of questions...

1) Setting Max bandwidth  = 722000 (1/2 T1) Threads = 25 (SE version) and
Allocation Factor = 2 (per your recommendation??) tells us that we'd only be
using 8 or 9 of our 25 threads before we reached very little to no available
bandwidth. So in our case setting the allocation factor 13 would be more
efficent, correct?

2)That said, what's the advantage, if any, to allocating a large amount of
bandwith to our first available thread?  Would it be more efficent to set an
allocation factor of 25 and have a more consistent amount of bandwidth to
offer each thread?

Please shed some light on this, as opinions from this list and documentation
on this matter are sometimes conflicting and we'd like to get these numbers
right, once and for all.  Keep in mind our goal is to send 20,000 10-12k
emails in an hour or so, given our bandwidth restrictions.  Thanks in
advance for any suggestions from you or anybody else on the list thats had
to deal with this. _mark Kecko


<cfoutput>
<cfif IsDefined("Form.Submit")>
        <cfparam name="Variables.BandWidthLeft" default="#Form.MaxBand#">

        <cfloop from=1 to="#Form.Threads#" index="i">
                <cfset Variables.BandWidthForThisThread = (1 / Form.AllocFactor) *
Variables.BandWidthLeft>
                <cfset Variables.BandWidthLeft = Variables.BandWidthLeft -
Variables.BandWidthForThisThread>

                <cfif Variables.BandWidthForThisThread LT Form.MinBandThread><font
color="red"></cfif>
                Thread #i#: #Variables.BandWidthForThisThread#<br>
        </cfloop>
<cfelse>
        <form name="a" action="#http.Path_Info#" method="Post">
                Threads: <input type=text name="Threads" size=10><br>
                Allocation Factor: <input type=text name="AllocFactor" size=10><br>
                Max Bandwidth: <input type=text name="MaxBand" size=10><br>
                Minimum Bandwidth/Thread: <input type=text name="MinBandThread"
size=10><br>
                <input type=Submit name=submit value=Submit>
        </form>
</cfif>
</cfoutput>

==^=======================================================
     This list server is Powered by iMS
   "The Swiss Army Knife of Mail Servers"
   --------------------------------------
To leave this list please complete the form at 
http://www.coolfusion.com/iMSSupport.cfm
Need an iMS Developer license?  Sign up for a free license here:
http://www.coolfusion.com/iMSDevelopers.cfm
List archives: http://www.mail-archive.com/infusion-email%40eoscape.com/
Note: You are subscribed as [email protected]
==^=======================================================


Reply via email to