![]() |
Stream
I use MxStorage to store my Files , is there a way to search for a keyword in these stored Files without extract them at all , Then if the result is positive we give the File Name where the Keyword is found.
I thought of using a Stream ( TMemorySteam ). Thanks in advance |
Re: Stream
I would keep a seperate hashtable with the keywords and the specific filenames. Searching in a well sorted hashtable is a lot faster than running around in a stream, because you would have to scan the whole stream (worst case) to find the keyword - in the (sorted) hashtable you only have to match up the hash value, and you can do that character for character, so when you have the hash abcdef and you start at the beginning and find baaaaa in the list you know that you don't have to look further because there won't be another hash starting with an a later on.
|
Re: Stream
Thanks Phoenix , could you please provide me with an exemple .
|
Re: Stream
Huh, that was more a theoretical point of view ;-)
But I think there are good 'THashTable' implementations somewhere out there you can use. Have a look here: ![]() and here: ![]() I think a search for ![]() ![]() |
Alle Zeitangaben in WEZ +1. Es ist jetzt 13:46 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz