Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Product Lifecycle
  3. Collaboration / Beta Testing
  4. Suggestions needed for testing an ASP.NET control

Suggestions needed for testing an ASP.NET control

Scheduled Pinned Locked Moved Collaboration / Beta Testing
databasecsharpasp-netsql-servercom
2 Posts 2 Posters 6 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P Offline
    P Offline
    Paul Ingles
    wrote on last edited by
    #1

    This is in regard to my CountryListBox ASP.NET control article here on CP: http://www.codeproject.com/useritems/CountryListBox.asp[^] The most intensive part of the search is performed by MaxMind's supplied CountryLookup class (which in turn accesses the GeoIP.dat file -- the IP database). Mind you, this could be ported to SQL Server and searched through SQL statements. Anyway, I want to get some kind of test with regards to how efficient the file access is, what kinds of loads can be expected etc. There are two disk I/O intensive operations: 1) Loading of the countries from a text file 2) Search of the GeoIP database Is there any kind of behind-the-scenes file caching in Windows 2000/XP? Anyway, I'm going to run some load tests on my machine (only XP Pro -- limited incoming connections I believe?) to see how it handles, but was wondering if anyone had any general strategies as to how to go about testing it? Things to watch out for etc.? Thanks for your help -- Paul "If you can keep your head when all around you have lost theirs, then you probably haven't understood the seriousness of the situation." - David Brent, from "The Office" MS Messenger: paul@oobaloo.co.uk Sonork: 100.22446

    M 1 Reply Last reply
    0
    • P Paul Ingles

      This is in regard to my CountryListBox ASP.NET control article here on CP: http://www.codeproject.com/useritems/CountryListBox.asp[^] The most intensive part of the search is performed by MaxMind's supplied CountryLookup class (which in turn accesses the GeoIP.dat file -- the IP database). Mind you, this could be ported to SQL Server and searched through SQL statements. Anyway, I want to get some kind of test with regards to how efficient the file access is, what kinds of loads can be expected etc. There are two disk I/O intensive operations: 1) Loading of the countries from a text file 2) Search of the GeoIP database Is there any kind of behind-the-scenes file caching in Windows 2000/XP? Anyway, I'm going to run some load tests on my machine (only XP Pro -- limited incoming connections I believe?) to see how it handles, but was wondering if anyone had any general strategies as to how to go about testing it? Things to watch out for etc.? Thanks for your help -- Paul "If you can keep your head when all around you have lost theirs, then you probably haven't understood the seriousness of the situation." - David Brent, from "The Office" MS Messenger: paul@oobaloo.co.uk Sonork: 100.22446

      M Offline
      M Offline
      Michael Dunn
      wrote on last edited by
      #2

      Paul Ingles wrote: Is there any kind of behind-the-scenes file caching in Windows 2000/XP? Sure, all versions of the OS maintain a disk cache. If the file isn't too big (like, under 1MB), you can map the whole file into memory at once and then do your searches. That lets the OS handle the entire I/O process, as opposed to reading the file into your own buffer a chunk at a time. --Mike-- "Adventure. Excitement. A Jedi craves not these things."   -- Silent Bob 1ClickPicGrabber - Grab & organize pictures from your favorite web pages, with 1 click! My really out-of-date homepage Sonork-100.19012 Acid_Helm

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups