python 的 mmap 用行读取的方法?这样行吗,但是感觉还是很慢 with open(STAT_FILE, "r+b") as f: m=mmap.mmap(f.fileno(), 0, prot=mmap.PROT_READ) while True: line=m.readline() if line == '': break print line.rstrip()
必须其他语言?
sjmcefc2
2018-05-05 09:14:52 +08:00
主要用来按行读取,然后 split,然后判断每个字段的编码,java 有这些? go 能满足?速度如何?