This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 194570 - Ability to edit files with 50k lines (umbrella)
Summary: Ability to edit files with 50k lines (umbrella)
Status: NEW
Alias: None
Product: editor
Classification: Unclassified
Component: -- Other -- (show other bugs)
Version: 7.0
Hardware: All All
: P2 normal with 1 vote (vote)
Assignee: Milutin Kristofic
URL:
Keywords: PERFORMANCE
Depends on: 182614 190848 194527 195193
Blocks:
  Show dependency tree
 
Reported: 2011-01-21 10:03 UTC by David Strupl
Modified: 2012-06-05 08:46 UTC (History)
3 users (show)

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description David Strupl 2011-01-21 10:03:46 UTC
Let's try to collect all the problems related to editing the very large files under this umbrella.
Comment 1 Alexander Simon 2011-01-21 10:26:40 UTC
I would like to clarify "very large files" term.
Number of lines in very large file depends from language.
So very large file from Java point of view is 50K lines.
Very large file from C/C++ point of view is 200K lines.
Comment 2 David Strupl 2011-01-21 10:32:33 UTC
Ok - let's first fix it for 50k lines and then see whether we can do even better. I think even the first part will be hard enough for the near term ...
Comment 3 Miloslav Metelka 2011-01-21 14:05:54 UTC
Generally most of the editor infrastructure should scale well regarding size (all the important structrures use binary searches) except few cases like e.g. MarkBlock for guarded document and few others. I would also like to inspect the current HighlightingManager whether there could be certain improvements done.
 What I see as a potential problem are certain openide.text extensions like e.g. PositionRef.Manager and handling many Line objects (due to o.o.t.Annotation objects attached) per document in general.
 Also re-parsing of the whole document (re-attaching all highlights) won't scale well for very large files (e.g. java now only reparses single method if possible).