This patch implements a page cache that is invalidated in a LRU fashion.
Pages are added to the cache as soon as they become visible. When the cache is
full and a new page that isn't in the cache becomes visible, the least recently
viewed page in the cache is evicted from memory and the new one
On Mon, Mar 25, 2013 at 07:44:10PM +0100, Sebastian Ramacher wrote:
> First of all, thanks for the awesome patch and implementing this
> superior method of page caching.
You,re more than welcome.
> Here are some comments.
>
> On 2013-03-25 13:11:21, Marwan Tanager wrote:
> > diff --git a/page.c
On 2013-03-24 19:15:02, gi1242+zath...@gmail.com wrote:
> Hi All,
>
> I'd like to map a "H" to "scroll left 20 times" (i.e. pressing "H"
> should be the equivalent of pressing "20h" after the numeric count patch
> has been applied).
>
> Do you know if this is possible? What syntax should I use to
First of all, thanks for the awesome patch and implementing this
superior method of page caching.
Here are some comments.
On 2013-03-25 13:11:21, Marwan Tanager wrote:
> diff --git a/page.c b/page.c
> index d31af46..cb84313 100644
> --- a/page.c
> +++ b/page.c
> @@ -11,15 +11,6 @@
> #include "in
This patch implements a page cache that is invalidated in a LRU fashion.
Pages are added to the cache as soon as they become visible. When the cache is
full and a new page that isn't in the cache becomes visible, the least recently
viewed page in the cache is evicted from memory and the new one