我需要一个快速的解决方案来处理 Python 中随机的 w/r 文本片段。我想做的是这样的:
- 编写代码段并记录指针
- 使用指针检索片段
片段的长度是任意的,我选择不使用数据库来存储它们,而只使用指针。通过简单地用 C 函数替换 Python 文件方法(解决方案 1),它非常快,并且指针仅包含片段的“位置”和“多长时间”。在那之后,我尝试了我认为可以与 Berkeley DB 一起使用的真实东西。我不知道该怎么称呼它,也许是“分页”?
问题是,这段代码确实有效,比解决方案 1 快 1.5 到 2 倍,但速度并没有快多少,需要使用 4 部分指针。也许这不是一个值得的方法,但有没有显着改进的空间?
以下是代码:
from collections import namedtuple
from ctypes import cdll,c_char_p,\
c_void_p,c_size_t,c_long,\
c_int,create_string_buffer
libc = cdll.msvcrt
fopen = libc.fopen
fread = libc.fread
fwrite = libc.fwrite
fseek = libc.fseek
ftell = libc.ftell
fflush = libc.fflush
fclose = libc.fclose
#######################################################
# The following is how to write a snippet into the SnippetBase file
ptr = namedtuple('pointer','blk1, start, nblk, length')
snippet = '''
blk1: the first blk where the snippet is
start: the start of this snippet
nblk: number of blocks this snippet takes
length: length of this snippet
'''
bsize = 4096 # bsize: block size
fh = fopen('.\\SnippetBase.txt','wb')
fseek(fh,0,2)
pos1 = divmod(ftell(fh),bsize)
fwrite(snippet,c_size_t(len(snippet)),1,fh)
fflush(fh)
pos2 = divmod(ftell(fh),bsize)
ptr = ptr(pos1[0],pos1[1],pos2[0]-pos1[0]+1,len(snippet))
fclose(fh)
#######################################################
# The following is how to read the snippet from the SnippetBase file
fh = fopen('.\\SnippetBase.txt','rb')
fseek(fh,c_long(ptr.blk1*bsize),1)
buff = create_string_buffer(ptr.nblk*bsize)
fread(buff,c_size_t(ptr.nblk*bsize),1,fh)
print buffer(buff,ptr.start,ptr.length)
fclose(fh)