[Mono-bugs] [Bug 71413][Nor] Changed - Path.GetFullPath is heavy on string allocations
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Tue, 18 Jan 2005 15:12:24 -0500 (EST)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by joeshaw@novell.com.
http://bugzilla.ximian.com/show_bug.cgi?id=71413
--- shadow/71413 2005-01-18 14:52:22.000000000 -0500
+++ shadow/71413.tmp.31522 2005-01-18 15:12:23.000000000 -0500
@@ -45,6 +45,11 @@
if you have:
/home/benm/blah
/home/benm/foo
/home/benm/bar
You can store `/home/benm/' in memory once, and save some ram there.
+
+------- Additional Comments From joeshaw@novell.com 2005-01-18 15:12 -------
+Well, at this point we've already optimized out the allocations we can
+directly. The majority of them are now stored in the DirectoryInfo
+class, which we probably can't easily optimize out.