Menu

Performance of YTable

Help
2007-08-21
2013-04-08
  • david sinclair

    david sinclair - 2007-08-21

    Hi Tomi,

    I am doing some testing of the YTable to see whether it can stand up to the requirements for the application I am redesigning. With the current implementation of setModelValue copying the contents of the model every time, the performance is not that great. Especially considering the hardware that I am constrained to. I was wondering if you were considering making the model/view sync more granular so the entire contents of the model don't need to be copied each time.

    thanks for your input

     
    • Tomi Tuomainen

      Tomi Tuomainen - 2007-08-21

      Hmm, that's strange. YTable is running in production in many desktops and we've never had any performance problems. What's happening in setModelValue is that object references are copied to a new ArrayList, that shouldn't be a bottleneck. If your JVM can't do that, I'm not sure if Swing is right choice at all. There may be something I can tune, but I would need more specific information about what/how. In general, JTable with many cell specific editors and renderers might be a problem for resources.

      Anyway, if you don't want to update all contents of YTable, you can use addRow and removeRow methods or update directly the selected row JavaBean (don't call notifyObservers in YModel at all).

      Tomi

       
    • david sinclair

      david sinclair - 2007-08-22

      my bad Tomi. It wasn't the copying of the references, but not having a column class explicitly specified that was killing performance.

      thanks for your help

       

Log in to post a comment.