我们不允许为书籍、工具、软件库等寻求推荐的问题。你可以编辑这个问题,以便用事实和引文来回答。
Closed 8 years ago.
我有这个100000个文件的代码库,我需要驯服它,我需要经常搜索特定函数调用或函数定义的发生情况。
目前使用记事本++,我需要5分钟以上才能完成搜索。
你知道有哪个程序员的编辑器能胜任这份工作吗?
谢谢你的帮助
杰罗姆·瓦格纳
我们不允许为书籍、工具、软件库等寻求推荐的问题。你可以编辑这个问题,以便用事实和引文来回答。
Closed 8 years ago.
我有这个100000个文件的代码库,我需要驯服它,我需要经常搜索特定函数调用或函数定义的发生情况。
目前使用记事本++,我需要5分钟以上才能完成搜索。
你知道有哪个程序员的编辑器能胜任这份工作吗?
谢谢你的帮助
杰罗姆·瓦格纳
也许你应该使用特定的搜索工具进行搜索,而不是使用文本编辑器。。。
根据您的平台,有各种可用的工具,如GREP(命令行)、Windows Search Service(提前创建文件索引以加快查询速度),甚至谷歌桌面搜索。
http://www.google.co.uk/search?q=file%20search%20tool
(提示:将Windows/Linux等添加到搜索中)
是的,Grep很好,很受欢迎,可以集成在许多平台上的许多工具中
一次免费赢取:http://www.pspad.com/
The BEST one I ever used is built into PSPad (www.pspad.com / freeware) it displays a list and you can change anything or all the strings, or search and see where they appear. You can also search specific directories only.
您也可以对ack,或cscope。
您可以将ack集成到vim中,具体如下:
set grepprg=ack
nnoremap <f1> :grep<space>
nnoremap <f1> :grepapp<space>
I ve been reading up on the Sphinx search engine and the Thinking Sphinx gem. In the TS docs it says... Sphinx has one major limitation when compared to a lot of other search services: you cannot ...
how can i index acronyms like m.i.a. ? when i search for mia , i get results for mia and not m.i.a. . when i search for m.i.a. , i get nothing at all. edit: solution looks roughly like: ...
The django-sphinx documentation shows that django-sphinx layer also supports some basic querying over multiple indexes. http://github.com/dcramer/django-sphinx/blob/master/README.rst from ...
I am trying to figure out how to add search to my rails application. I am brand new so go slow. I have created a blog and done quite a bit of customizing including adding some AJAX, pretty proud of ...
I m trying to improve our search capabilities for short phrases (in our case movie titles) and am currently looking at SQL Server 2008 Full Text Search, which provides some of the functionality we ...
Ok I have a full text search index created on my JobsToDo table, but what I m concerned about is if this is rendering my other indexes on the table useless. I have a normal nonclustered index on the ...
I m trying to get Lucene.NET to work on a shared hosting environment. Mascix over on codeproject outlines here how he got this to work on godaddy. I m attempting this on isqsolutions. Both ...
I can t seem to find any recent talk on the choice. Back in 06 there was criticism on Hibernate Search as being incomplete and not being ready to compete with Compass, is it now? Has anyone used both ...