zsh-workers
 help / color / mirror / code / Atom feed
From: Zoltan Hidvegi <hzoli@cs.elte.hu>
To: hniksic@srce.hr (Hrvoje Niksic)
Cc: zsh-workers@math.gatech.edu
Subject: Re: HISTSIZE
Date: Mon, 10 Jun 1996 21:05:20 +0200 (MET DST)	[thread overview]
Message-ID: <199606101905.VAA07171@bolyai.cs.elte.hu> (raw)
In-Reply-To: <kigohmuhwyg.fsf@jagor.srce.hr> from Hrvoje Niksic at "Jun 8, 96 10:17:43 pm"

> I have noticed that when I set HISTSIZE (the maximum size of the
> history list) in zsh to something huge, zsh takes huge amounts of
> memory.
> 
> When I converted from bash, I have easily ported all the init files,
> and HISTSIZE caused terrible problems (especially since I didn't know
> HISTSIZE was causing them). The reason I set HISTSIZE to such a big
> value is just to keep it from bothering me -- it is just a *maximum*
> value I am changing. In bash it worked exactly that way (no additional
> memory expense). But it seems that the organization of history storage
> requires resizehistevents() to reallocate the list to HISTSIZE history
> entries.
> 
> I wonder how difficult would it be to patch hist.c in such a way that
> the actual size of the history list changes dynamically, HISTSIZE
> being only an upper limit to that change.

Zsh uses a HISTSIZE long array to store history entries.  gethistent(X) is
defined as (histentarr+((X)%histentct)) (with proper bounds checking at
apropriate places).  This is usually the most compact representation.  A
linked list can be used but then the pointers would require extra memory.
histentarr is almost full in most cases since it is filled from $HISTFILE
upon invocation.  Most people do like to limit the number of stored history
events since loading and saving big histories takes a long time.  Of course
SAVEHIST can be smaller than HISTSIZE but most people do not issue more
than 1000 commands from one shell so HISTSIZE = SAVEHIST + 1000 should be
enough.

Zoltan



  reply	other threads:[~1996-06-10 19:16 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1996-06-08 20:17 HISTSIZE Hrvoje Niksic
1996-06-10 19:05 ` Zoltan Hidvegi [this message]
1996-06-10 19:10   ` HISTSIZE Hrvoje Niksic

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=199606101905.VAA07171@bolyai.cs.elte.hu \
    --to=hzoli@cs.elte.hu \
    --cc=hniksic@srce.hr \
    --cc=zsh-workers@math.gatech.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).