標籤:效能比較 內建命令
Python文法簡單,而且通過縮排的方式來表現階層,代碼非常簡明易懂,對初學者來說,比較容易上手。
Perl的模式比對非常強大,同時匹配的符號有很多種,難以閱讀和維護。
在文本處理方面,python通過載入re模組來實現模式比對的尋找和替換。而Perl內建就有模式比對功能。
note:內建命令和外部命令的區別。
通過代碼來直接做比較。
python版:
#!/usr/bin/pythonimport reimport fileinputexists_re = re.compile(r'^(.*?) INFO.*Such a record already exists', re.I)location_re = re.compile(r'^AwbLocation (.*?) insert into', re.I)for line in fileinput.input(): fn = fileinput.filename() currline = line.rstrip() mprev = exists_re.search(currline) if(mprev): xlogtime = mprev.group(1) mcurr = location_re.search(currline) if(mcurr): print fn, xlogtime, mcurr.group(1)
Perl版:
#!/usr/bin/perlwhile (<>) { chomp; if (m/^(.*?) INFO.*Such a record already exists/i) { $xlogtime = $1; } if (m/^AwbLocation (.*?) insert into/i) { print "$ARGV $xlogtime $1\n"; }}
time process_file.py *log > summarypy.log
real 0m8.185s
user 0m8.018s
sys 0m0.092s
time process_file.pl *log > summaypl.log
real 0m1.481s
user 0m1.294s
sys 0m0.124s
在文本處理方面,Perl 比Python快8倍左右。
所以在處理大檔案如大日誌方面,用perl更好,因為更快。
如果對速度要求不是很嚴格的話,用python更好,因為python簡潔易懂,容易維護和閱讀。
為什麼在文本處理時,Perl比Python快很多呢?
這是因為Perl的模式比對是其內建功能,而Python需要載入re模組,使用內建命令比外部命令要快很多。
內建命令和外部命令的區別Linux命令有內建命令和外部命令之分,功能基本相同,但是調用有些細微差別。
內建命令實際上是shell程式的一部分,其中包含的是一些簡單的linux系統命令,這些命令在shell程式識別並在shell程式內部完成運行,通常在
linux系統載入運行時shell就被載入並駐留在系統記憶體中。內部命令是設在bash原始碼裡面的,其執行速度比外部命令快,因為
解析內部命令shell不需要建立子進程,比如exit,cd,pwd,echo,history等。
外部命令是linux系統中的實用應用程式,因為公用程式的功能通常比較強大,其包含的程式量也很大,
在系統載入的時候並不隨系統一起被載入到記憶體中,而是在需要的時候才將其調入記憶體。通常外部命令的實體並不包含在shell中,但是其命令執行過程是由shell程式控制的。shell程式管理外部命令執行的路徑尋找,載入存放,並控制命令的執行。外部命令是在bash之外額外安裝的,通常放在/bin, /usr/bin, /sbin, /usr/sbin,....等。
用type命令可以分辨內部命令與外部命令。
Perl和Python的比較(主要是效能比較)