Overview
Comment: | Added compression for messages over http |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.60 |
Files: | files | file ages | folders |
SHA1: |
a73f871b7d0ff44aa3bcde8e1fe9d594 |
User & Date: | matt on 2014-10-20 22:21:00 |
Other Links: | branch diff | manifest | tags |
Context
2014-10-20
| ||
22:48 | Added exception handler to stats gathering check-in: 87aa55e5d2 user: matt tags: v1.60 | |
22:21 | Added compression for messages over http check-in: a73f871b7d user: matt tags: v1.60 | |
21:46 | Couple corrections to client discarding of connections logic check-in: d75d0889de user: matt tags: v1.60 | |
Changes
Modified db.scm from [b706df4bfb] to [665aabc3b4].
︙ | |||
10 11 12 13 14 15 16 | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | - + | ;;====================================================================== ;;====================================================================== ;; Database access ;;====================================================================== (require-extension (srfi 18) extras tcp) |
︙ | |||
1990 1991 1992 1993 1994 1995 1996 | 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 | - + + + + + - - - + + + | ;; NOTE: Can remove the regex and base64 encoding for zmq (define (db:obj->string obj) (case *transport-type* ;; ((fs) obj) ((http fs) (string-substitute (regexp "=") "_" |
︙ |