.NET Implementations of Trie Data Structures for Substring Search, Auto-completion and Intelli-sense. Includes: patricia trie, suffix trie and a trie implementation using Ukkonen's algorithm.
MIT License
425
stars
67
forks
source link
Incompatible with UWP because of String.Intern() #7
I am using trienet within my UWP App, however I had to remove all the calls to string.Intern() (here and here), and replace them by simple string assignements such as m_Origin = origin, because the .NET team decided to remove methods which they "regretted adding in the first place, or restricted our plans around innovating for the future." (according to David Kean).
However, I'm guessing this has a negative impact on performance. Is there anyway to limit this?
I am using trienet within my UWP App, however I had to remove all the calls to
string.Intern()
(here and here), and replace them by simple string assignements such asm_Origin = origin
, because the .NET team decided to remove methods which they "regretted adding in the first place, or restricted our plans around innovating for the future." (according to David Kean).However, I'm guessing this has a negative impact on performance. Is there anyway to limit this?