Quanto pode diminuir o buffer de utilitário?

1

Estou curioso.

Você pode usar less para ler um arquivo de 100 GB sem problemas. Mas se você cat um arquivo de 100 GB em less , estou pensando que less deve armazenar em buffer o arquivo inteiro porque existe um canal (era 64K?) Entre o arquivo e menos.

Então, alguém sabe sobre a política de buffering em less , ela começará a armazenar em buffer desde o início até a memória acabar?

    
por haelix 23.09.2012 / 18:04

1 resposta

5

A página de manual de less aborda o tópico:

   -bn or --buffers=n
          Specifies  the  amount of buffer space less will use for each file,
          in units of kilobytes (1024 bytes).  By default 64K of buffer space
          is  used  for  each  file  (unless  the  file is a pipe; see the -B
          option).  The -b option specifies instead that n kilobytes of  buf‐
          fer  space  should be used for each file.  If n is -1, buffer space
          is unlimited; that is, the entire file can be read into memory.

   -B or --auto-buffers
          By default, when data is read from a pipe,  buffers  are  allocated
          automatically  as  needed.   If a large amount of data is read from
          the pipe, this can cause a large amount of memory to be  allocated.
          The  -B  option  disables  this automatic allocation of buffers for
          pipes, so that only 64K (or the amount of space specified by the -b
          option)  is  used  for  the pipe.  Warning: use of -B can result in
          erroneous display, since only the most recently viewed part of  the
          piped data is kept in memory; any earlier data is lost.

A página man implica que o buffer eventualmente crescerá tanto quanto a entrada inteira, se você não restringir isto pelas opções -B e -b.

    
por 23.09.2012 / 19:21

Tags