Large memory control questions

Ask a Question related to ASP.NET Building Controls, Design and Development.

  1. #1

    Default Large memory control questions

    I have an ASP.NET control that can generate up to 200K in memory on a per
    request basis. It reads a series of files, manipulates them in memory and
    then writes them out together as a single response stream. This is
    unavoidable given what I'm doing with them.

    I have a couple questions about this.

    1) What is a good way to stress test a control like this? How can I know
    this is feasible for an enterprise grade organization? I know perfmon is
    the correct monitoring tool, but what's a good stress test methodology prior
    to deployment?

    2) I've currently implementing this control using a required web page on the
    client to process the outgoing stream. This page is then referenced with
    the appropriate mime, etc. I considered using HTTPModules, but I noticed
    that HTTPModules participate in every request to a server regardless of
    whether they have been invoked. Which is more efficient for this amount of
    data?

    3) I'm current reading the files (appx 17K a piece) off the disk with
    readonly access. Would it be more or less efficent to put them in SQL
    Server as BLOBS?

    Many thanks for your candid answers.


    Justin Weinberg Guest

  2. Similar Questions and Discussions

    1. Why does grabbing large recordset from the db uses somuch VM memory
      I'm using CF6.1, oracle db, jrun install (but the following is probably true everywhere). - In a controlled environement, I turn on metrics,...
    2. #16325 [Ver->Bgs]: Memory leak causes DLLHOST to become large
      ID: 16325 Updated by: sniper@php.net Reported By: mail-php dot net at kimihia dot org dot nz -Status: Verified...
    3. #16325 [Ver]: Memory leak causes DLLHOST to become large
      ID: 16325 Updated by: sniper@php.net Reported By: mail-php dot net at kimihia dot org dot nz Status: Verified...
    4. Recommended memory for large files
      Carl, Suppose huge cheap flat panel wall displays with umpteen Mpixel resolution become available? I hope there are others wanting this so...
    5. DB_File, large hash, memory.
      "A24061" <a24061@yahoo.com> wrote in message news:8228723b.0306260123.12359076@posting.google.com......
  3. #2

    Default RE: Large memory control questions

    Hi Justin,

    Its really difficult to guess what may perform better without knowing lots of detail of your specific scenario. There are lots of tools for stressing web apps. If you've VS.NET (Pro or + editions only I believe) you should have MS ACT (Application Center Test) that you could use to do some testings.

    --
    Victor Garcia Aprea
    Microsoft MVP | ASP.NET
    Looking for insights on ASP.NET? Read my blog:
    [url]http://obies.com/vga/blog.aspx[/url]
    To contact me remove 'NOSPAM'. Please post all questions to the newsgroup
    Victor Garcia Aprea [MVP] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139