Forum Kurallarını Okumak İçin Lütfen Tıklayınız .

Recently searched:

How To Parse Extremely Large Data Questions 

Questions How To Parse Extremely Large Data
Joined
May 24, 2024
Messages
14
Reaction score
1
#CR
2
how to parse extremely large data, whats the best method? share thanks
 
I assume you are talking about txt files, so I suppose the quickest way for you would be the bash "grep" command for this. If you use Windows, you can download git, which installs a bash emulator.

grep -i "[some text]" file.txt

or

grep -i "[something]" .
for scan all files in the directory.

I suggest splitting large files into smaller parts with the split command

split largefile.txt -b 1024m
where "1024m" is the desired size, in megabytes. Change this as needed.

What I posted are just simple examples, research what these commands are capable of doing on your own.
 

Users who are viewing this thread

Home Register
Top Bottom