Test the efficiency of deleting a large number of files under Linux. First create 500,000 files 1. rm delete
rm does not work due to the large number of files. 2. Find and delete
About 43 minutes on my computer. . . . . . I deleted it while watching the video. 3. find with delete
It takes 9 minutes. 4. rsync delete
Very good and powerful. 5. Python Delete import os import timeit def main(): for pathname,dirnames,filenames in os.walk('/home/username/test'): for filename in filenames: file = os.path.join(pathname,filename) os.remove(file) if __name__ == '__main__': t = timeit.Timer('main()','from __main__ import main') print t.timeit(1) 1 2 $ python test.py 529.309022903 It takes about 9 minutes. 6. Perl Delete
This should be the fastest. 7. Results:
Conclusion: rsync is the fastest and most convenient way to delete a large number of small files. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Understanding v-bind in vue
>>: Detailed explanation of the use of MySQL mysqldump
DCL (Data Control Language): Data control languag...
Table of contents Preface Rendering Example Code ...
In MySQL, you can use the REVOKE statement to rem...
The JSON format field is a new attribute added in...
A few days ago, I saw a post shared by Yu Bo on G...
1. Start the Docker container Start a new Docker ...
TABLE> <TR> <TD> <TH> <CA...
I have newly installed MySQL 5.7. When I log in, ...
Follow the official tutorial, download the instal...
Create a container [root@server1 ~]# docker run -...
This article example shares the specific code of ...
Benefits of a programmatic approach 1. Global con...
Table of contents Overview 1. Compositon API 1. W...
The first one : Copy code The code is as follows: ...
Vue $http get and post request cross-domain probl...