gustavomdsantos / quick-deb-builder

A simple tool that creates .deb packages quickly from an existing build tree.
GNU General Public License v2.0
8 stars 0 forks source link

Optimize function 'dcreate' (`find` with multiple patterns or `grep` with regex or sth faster) #16

Open gustavomdsantos opened 8 years ago

gustavomdsantos commented 8 years ago

English

A big quantity of files inside of a source folder makes Quick DEB Builder take too much time for creating a package. It happens because the funcion 'dcreate' executes the command find many times, making recusive file searches in the same directory repeatedly.

Possible algorithmic solutions can be found in this link

Português

Uma grande quantidade de arquivos dentro de uma pasta de origem faz o Quick DEB Builder gastar tempo demais para criar um pacote. Isso acontece porque a função 'dcreate' executa o comando find muitas vezes, fazendo buscas recursivas por arquivos no mesmo diretório repetidamente.

Possíveis soluções algorítmicas podem ser encontradas neste link