Andrew Cooke | Contents | Latest | RSS | Previous | Next

C[omp]ute

Welcome to my blog, which was once a mailing list of the same name and is still generated by mail. Please reply via the "comment" links.

Always interested in offers/projects/new ideas. Eclectic experience in fields like: numerical computing; Python web; Java enterprise; functional languages; GPGPU; SQL databases; etc. Based in Santiago, Chile; telecommute worldwide. CV; email.

Personal Projects

Choochoo Training Diary

Last 100 entries

Surprise Paradox; [Books] Good Author List; [Computing] Efficient queries with grouping in Postgres; [Computing] Automatic Wake (Linux); [Computing] AWS CDK Aspects in Go; [Bike] Adidas Gravel Shoes; [Computing, Horror] Biological Chips; [Books] Weird Lit Recs; [Covid] Extended SIR Models; [Art] York-based Printmaker; [Physics] Quantum Transitions are not Instantaneous; [Computing] AI and Drum Machines; [Computing] Probabilities, Stopping Times, Martingales; bpftrace Intro Article; [Computing] Starlab Systems - Linux Laptops; [Computing] Extended Berkeley Packet Filter; [Green] Mainspring Linear Generator; Better Approach; Rummikub Solver; Chilean Poetry; Felicitations - Empowerment Grant; [Bike] Fixing Spyre Brakes (That Need Constant Adjustment); [Computing, Music] Raspberry Pi Media (Audio) Streamer; [Computing] Amazing Hack To Embed DSL In Python; [Bike] Ruta Del Condor (El Alfalfal); [Bike] Estimating Power On Climbs; [Computing] Applying Azure B2C Authentication To Function Apps; [Bike] Gearing On The Back Of An Envelope; [Computing] Okular and Postscript in OpenSuse; There's a fix!; [Computing] Fail2Ban on OpenSuse Leap 15.3 (NFTables); [Cycling, Computing] Power Calculation and Brakes; [Hardware, Computing] Amazing Pockit Computer; Bullying; How I Am - 3 Years Post Accident, 8+ Years With MS; [USA Politics] In America's Uncivil War Republicans Are The Aggressors; [Programming] Selenium and Python; Better Walking Data; [Bike] How Fast Before Walking More Efficient Than Cycling?; [COVID] Coronavirus And Cycling; [Programming] Docker on OpenSuse; Cadence v Speed; [Bike] Gearing For Real Cyclists; [Programming] React plotting - visx; [Programming] React Leaflet; AliExpress Independent Sellers; Applebaum - Twilight of Democracy; [Politics] Back + US Elections; [Programming,Exercise] Simple Timer Script; [News] 2019: The year revolt went global; [Politics] The world's most-surveilled cities; [Bike] Hope Freehub; [Restaurant] Mama Chau's (Chinese, Providencia); [Politics] Brexit Podcast; [Diary] Pneumonia; [Politics] Britain's Reichstag Fire moment; install cairo; [Programming] GCC Sanitizer Flags; [GPU, Programming] Per-Thread Program Counters; My Bike Accident - Looking Back One Year; [Python] Geographic heights are incredibly easy!; [Cooking] Cookie Recipe; Efficient, Simple, Directed Maximisation of Noisy Function; And for argparse; Bash Completion in Python; [Computing] Configuring Github Jekyll Locally; [Maths, Link] The Napkin Project; You can Masquerade in Firewalld; [Bike] Servicing Budget (Spring) Forks; [Crypto] CIA Internet Comms Failure; [Python] Cute Rate Limiting API; [Causality] Judea Pearl Lecture; [Security, Computing] Chinese Hardware Hack Of Supermicro Boards; SQLAlchemy Joined Table Inheritance and Delete Cascade; [Translation] The Club; [Computing] Super Potato Bruh; [Computing] Extending Jupyter; Further HRM Details; [Computing, Bike] Activities in ch2; [Books, Link] Modern Japanese Lit; What ended up there; [Link, Book] Logic Book; Update - Garmin Express / Connect; Garmin Forerunner 35 v 230; [Link, Politics, Internet] Government Trolls; [Link, Politics] Why identity politics benefits the right more than the left; SSH Forwarding; A Specification For Repeating Events; A Fight for the Soul of Science; [Science, Book, Link] Lost In Math; OpenSuse Leap 15 Network Fixes; Update; [Book] Galileo's Middle Finger; [Bike] Chinese Carbon Rims; [Bike] Servicing Shimano XT Front Hub HB-M8010; [Bike] Aliexpress Cycling Tops; [Computing] Change to ssh handling of multiple identities?; [Bike] Endura Hummvee Lite II; [Computing] Marble Based Logic; [Link, Politics] Sanity Check For Nuclear Launch; [Link, Science] Entropy and Life

© 2006-2017 Andrew Cooke (site) / post authors (content).

Caching In Web Apps

From: andrew cooke <andrew@...>

Date: Tue, 2 Oct 2012 07:51:17 -0300

Making a note here as this is too long to read right now, but looks
interesting.

http://martin.kleppmann.com/2012/10/01/rethinking-caching-in-web-apps.html

Also http://news.ycombinator.com/item?id=4599685

Andrew

Dynamic vs static generation

From: Daniel Yokomizo <daniel.yokomizo@...>

Date: Tue, 2 Oct 2012 13:02:30 -0300

Hi Andrew,

IME working with mostly read scenarios (e.g. blogs) it's better to
serve everything from a static webserver and generate the html on
updates. So every time you edit a post, add a comment, etc., some
piece of code (perhaps asynchronously) regenerate the associated html
files. For some scenarios this technique adds too much overhead (e.g.
you can't precompute every possible search results page) but you may
do a mixed scenario (e.g. precompute the item elements in the results
page and do the search using lucene over them, just assembling the
pieces and writing the directly on the response stream). This avoids
the entire cache invalidation/expiration issue, but you need to write
some tricky code to atomically replace the files in the filesystem (or
assume some read inconsistencies), there are many interesting choices
in this, some add a little logic to Apache, but overall the system
becomes way faster.

Daniel Yokomizo.

Re: Dynamic vs static generation

From: andrew cooke <andrew@...>

Date: Wed, 3 Oct 2012 18:46:00 -0300

Yes, I agree; that's how this blog works (email comes in and is used to
generate HTML via some simple Python; that's then pushed out to the web
server).  It's very efficient, but a pig to edit - hence all the typos that
never get fixed :o)

But I think the post I linked to is aimed at more dynamic processes, where
that's simply not possible.

I'm actually working on a similar problem at the moment.  A client has a
service that is rather slow.  So they want a facade that does three things:

 - It works as a cache, so that distributed clients, requesting the same
   data, don't hit the service multiple times.

 - It provides snapshotting / versioning / generationed data so that a
   client, as it makes several requests in a "transaction", sees consistent
   data.

 - It coallesces multiple "thin" calls into a single "fat" call to the API.

To do this I am using memcache with generational keys and two new components.

One component is a client-side library that reads from memcache where
possible.  If the data are not in memcache then the library calls the
underlying service.  The other component is a "primer".  Each time the service
starts a new generation the primer pre-loads memcache, before signalling the
client libraries to switch to a new prefix.

In terms of that work, the post I linked to is making a "programmable primer".
Which is very cool, but outside the scope of my work (in my case I have the
luxury of being able to call the service for unpredicted requests; the primer
only has to cover the common cases).

[Reading the above I haven't explained how coallescing works - the primer
pushes "fat" data; the client libraries load "fat" data and contain teh logic
to serve "thin" requests from that.]

Andrew

Comment on this post