CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jul 2011
    Posts
    2

    Trading application performance problem

    Hello all

    We are coding a trading application and almost near to complete. Our problem is its performance, when we use it for trial purpose, its very slow and don't update data in real time when we try to sort and filter the data. Is it possible to get sharp and quick response, when data is change or update. I can't provide you code.

    We are looking for all related solutions.

  2. #2
    Join Date
    Sep 2008
    Location
    Netherlands
    Posts
    865

    Re: Trading application performance problem

    To be helpful in this issue, we need to know a lot more information..:

    - How many data is there involved? Are we talking about 1000 records, 100,000 or milions?
    - What is causing the performance issue, the client or server? How do you connect between these?
    - Where do you do the sorting, client or server?

  3. #3
    Join Date
    Jun 2008
    Posts
    2,477

    Re: Trading application performance problem

    Like danny said; we obviously need more info. Performance tuning is not trivial, and it is a waste of time to guess. Learn how to use a decent profiler.

    I would add that C# is a *very* odd choice for a trading application. Those types of applications typically have hard real time requirements, something you will not ever be able to meet using C#. Would your prospective customers even consider your solution? Do you really understand the requirements at play here? You may want to take a moment to make sure that you can confidently answer "Yes" to those questions.

Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured