FAQ
Hi Catalysters,

For some actions of a Catalyst app, I would like to implement
conditional GET (using If-Modified-Since HTTP header), where the
timestamp of one config file decides whether the page should be
refreshed or not --- this is because that page is quite expensive to
compute.

This scenario sounds like a common thing to do, so I expected to find
some Catalyst plugins/extensions in CPAN to do that, but didn't find
any. Did I just miss some CPAN modules, or should I really start from
scratch ?

Thanks in advance for any hints,

Laurent Dami

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.scsys.co.uk/pipermail/catalyst/attachments/20100114/0b542f2e/attachment.htm

Search Discussions

  • Kiffin Gish at Jan 14, 2010 at 3:24 pm
    There's a good example using the 'Cache-Control' header in the new
    Catalyst book, Chapter 11, section 'Deploy with a Cache'.
    On Thu, 2010-01-14 at 16:05 +0100, Dami Laurent (PJ) wrote:
    Hi Catalysters,

    For some actions of a Catalyst app, I would like to implement
    conditional GET (using If-Modified-Since HTTP header), where the
    timestamp of one config file decides whether the page should be
    refreshed or not --- this is because that page is quite expensive to
    compute.

    This scenario sounds like a common thing to do, so I expected to find
    some Catalyst plugins/extensions in CPAN to do that, but didn't find
    any. Did I just miss some CPAN modules, or should I really start from
    scratch ?

    Thanks in advance for any hints,

    Laurent Dami

    _______________________________________________
    List: [email protected]
    Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
    Searchable archive: http://www.mail-archive.com/[email protected]/
    Dev site: http://dev.catalyst.perl.org/

    --
    Kiffin Gish <[email protected]>
    Gouda, The Netherlands
  • Octavian Rasnita at Jan 14, 2010 at 5:15 pm
    From: "Dami Laurent (PJ)" <[email protected]>

    Hi Catalysters,

    For some actions of a Catalyst app, I would like to implement
    conditional GET (using If-Modified-Since HTTP header), where the
    timestamp of one config file decides whether the page should be
    refreshed or not --- this is because that page is quite expensive to
    compute.

    This scenario sounds like a common thing to do, so I expected to find
    some Catalyst plugins/extensions in CPAN to do that, but didn't find
    any. Did I just miss some CPAN modules, or should I really start from
    scratch ?

    Thanks in advance for any hints,

    Laurent Dami




    Try Catalyst::Plugin::Cache::HTTP.



    Octavian
  • Aristotle Pagaltzis at Jan 16, 2010 at 2:34 pm

    * Dami Laurent (PJ) [2010-01-14 16:05]:
    For some actions of a Catalyst app, I would like to implement
    conditional GET (using If-Modified-Since HTTP header), where
    the timestamp of one config file decides whether the page
    should be refreshed or not --- this is because that page is
    quite expensive to compute.
    I agree with the others who have responded, but they didn?t
    explain why theirs was the right answer, so:

    You?re not checking whether any state has changed since the
    last GET to decide whether to recompute. That is the case in
    which conditional GET would be appropriate. That would allow
    you to avoid recomputing the page indefinitely as long as no
    state changes necessitate it, but it requires that the clients
    keep asking.

    Instead you merely want to avoid doing any recomputation for
    some predefined period of time, regardless of your state. This
    is a case for caching: since you aren?t going to recompute the
    page until said time has passed, you may as well tell the client
    that it?s superfluous for them to try asking again before that
    period is up.

    Regards,
    --
    Aristotle Pagaltzis // <http://plasmasturm.org/>
  • Dami Laurent (PJ) at Jan 18, 2010 at 7:35 am

    -----Message d'origine-----
    De : Aristotle Pagaltzis
    Envoy? : samedi, 16. janvier 2010 15:34
    ? : [email protected]
    Objet : [Catalyst] Re: modules for conditional GET ?

    * Dami Laurent (PJ) [2010-01-14 16:05]:
    For some actions of a Catalyst app, I would like to implement
    conditional GET (using If-Modified-Since HTTP header), where
    the timestamp of one config file decides whether the page
    should be refreshed or not --- this is because that page is
    quite expensive to compute.
    I agree with the others who have responded, but they didn't
    explain why theirs was the right answer, so:

    You're not checking whether any state has changed since the
    last GET to decide whether to recompute. That is the case in
    which conditional GET would be appropriate. That would allow
    you to avoid recomputing the page indefinitely as long as no
    state changes necessitate it, but it requires that the clients
    keep asking.
    Indeed, this is exactly what I want to do. The app has a config file (not a Catalyst
    config file, but another file having to do with business logic), and some super-users
    have a mechanism for hot uploading of a new config to the server, at any time.
    A few app pages are expensive to compute, and they depend on the client and on that config file. So clients should keep asking for those pages at each request, and depending on the If-Modified-Since header and on the timestamp for the config file, the server can decide if it's worth recomputing the page for that client, or rather send a cheap 304 Not Modified.

    Cheers, L. Dami
  • Aristotle Pagaltzis at Jan 18, 2010 at 10:47 am

    * Dami Laurent (PJ) [2010-01-18 08:35]:
    So clients should keep asking for those pages at each request,
    and depending on the If-Modified-Since header and on the
    timestamp for the config file, the server can decide if it's
    worth recomputing the page for that client, or rather send
    a cheap 304 Not Modified.
    I suggest you send an ETag and check `If-None-Match` (possibly
    just a hash of the timestamp for the config file) instead of
    (or if you have HTTP/1.0 clients, in addition to) relying on the
    timestamp and `If-Modified-Since`.

    Beyond that:

    It?s easy to write a module that will conserve bandwidth using
    these headers, by hashing the body after all computation is done
    and checking whether to send it or just a 304.

    But conserving server CPU requires intimate knowledge of both the
    model and the structure of the controllers. It seems hard to find
    a generically useful abstraction beyond a utility method or two
    for setting the headers.

    Regards,
    --
    Aristotle Pagaltzis // <http://plasmasturm.org/>
  • Bill Moseley at Jan 18, 2010 at 3:52 pm

    On Sun, Jan 17, 2010 at 11:35 PM, Dami Laurent (PJ) wrote:


    Indeed, this is exactly what I want to do. The app has a config file (not a
    Catalyst
    config file, but another file having to do with business logic), and some
    super-users
    have a mechanism for hot uploading of a new config to the server, at any
    time.
    A few app pages are expensive to compute, and they depend on the client and
    on that config file. So clients should keep asking for those pages at each
    request, and depending on the If-Modified-Since header and on the timestamp
    for the config file, the server can decide if it's worth recomputing the
    page for that client, or rather send a cheap 304 Not Modified.
    Be careful about using timestamps if you are running multiple web servers
    behind a load balancer (or may expand to where you will be behind a
    balancer). Here's a read on Etags:

    http://developer.yahoo.net/blog/archives/2007/07/high_performanc_11.html

    For resources such as css, js, images I tend to create URLs that include an
    md5. Those include cache headers that don't expire and thus when the
    content changes the URL changes.

    I have also done that with text/html pages, but it's less common. For a
    config file you can send the config through Object::Signature to get an
    md5. You could recalculate and cache that whenever a new config is
    uploaded.

    For "static" pages (for non-logged in users) the pages tend to get cached
    for some number of minutes as it's not critical that a change is seen
    exactly the same time by all users. Dynamic content is not cached, of
    course, but elements of the page may be cached in memcached.



    --
    Bill Moseley
    [email protected]
    -------------- next part --------------
    An HTML attachment was scrubbed...
    URL: http://lists.scsys.co.uk/pipermail/catalyst/attachments/20100118/681efd57/attachment.htm

Related Discussions

Discussion Navigation
viewthread | post
Discussion Overview
groupcatalyst @
categoriescatalyst, perl
postedJan 14, '10 at 3:05p
activeJan 18, '10 at 3:52p
posts7
users5
websitecatalystframework.org
irc#catalyst

People

Translate

site design / logo © 2023 Grokbase