CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 15 Aug 2025 21:32:56 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20091120092600
location: https://web.archive.org/web/20091120092600/https://github.com/ask/django-sessionstore
server-timing: captures_list;dur=0.729170, exclusion.robots;dur=0.025116, exclusion.robots.policy;dur=0.012400, esindex;dur=0.011526, cdx.remote;dur=25.035275, LoadShardBlock;dur=260.956191, PetaboxLoader3.datanode;dur=190.625520, PetaboxLoader3.resolve;dur=46.527557
x-app-server: wwwb-app218
x-ts: 302
x-tr: 334
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app218; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 15 Aug 2025 21:32:56 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Fri, 20 Nov 2009 09:25:59 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "a20f03c6f28ca205ff143293cd5e9684"
x-archive-orig-x-runtime: 213ms
x-archive-orig-content-length: 24725
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Fri, 20 Nov 2009 09:26:00 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 20 Nov 2009 09:26:00 GMT", ; rel="memento"; datetime="Fri, 20 Nov 2009 09:26:00 GMT", ; rel="next memento"; datetime="Mon, 21 Dec 2009 11:01:45 GMT", ; rel="last memento"; datetime="Sat, 24 Oct 2020 00:10:21 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_12_20091119224802_crawl103-c/51_12_20091120092518_crawl101.arc.gz
server-timing: captures_list;dur=0.467798, exclusion.robots;dur=0.017339, exclusion.robots.policy;dur=0.008671, esindex;dur=0.009831, cdx.remote;dur=6.082160, LoadShardBlock;dur=214.321647, PetaboxLoader3.datanode;dur=112.255557, PetaboxLoader3.resolve;dur=212.167678, load_resource;dur=183.931667
x-app-server: wwwb-app218
x-ts: 200
x-tr: 478
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
ask's django-sessionstore at master - GitHub
This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Description: | Django Cache+DB Session wich uses table rotation for expiry edit |
Homepage: | edit |
Public Clone URL: |
git://github.com/ask/django-sessionstore.git
Give this clone URL to anyone.
git clone git://github.com/ask/django-sessionstore.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:ask/django-sessionstore.git
|

Batiste (author)
Mon Oct 26 05:33:16 -0700 2009
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Loading commit data... ![]() |
|
![]() |
AUTHORS | ||
![]() |
Changelog | ||
![]() |
INSTALL | ||
![]() |
MANIFEST.in | ||
![]() |
README | ||
![]() |
TODO | ||
![]() |
djsession/ | ||
![]() |
docs/ | ||
![]() |
setup.cfg | ||
![]() |
setup.py |
README
================================================================================= django-sessionstore - Django Cache+DB Session wich uses table rotation for expiry ================================================================================= :Version: 0.0.2 Introduction ============ This package provide an alternative way to handle sessions with the Django framework. If you decide to store data in the session for unlogged users, you session table could become quickly big (several gigabytes). Deleting sessions with the script provided by Django is not possible anymore (too slow, create lock issue with InnoDB). This solution provided here is to duplicate the session table and migrate the used sessions from the old table to the new one when the user try to access them. After a choosen time. Repeat the operation and finaly delete the old table. Installation ============ You can install ``django-sessionstore`` either via the Python Package Index (PyPI) or from source. To install using ``pip``,:: $ pip install django-sessionstore To install using ``easy_install``,:: $ easy_install django-sessionstore If you have downloaded a source tarball you can install it by doing the following,:: $ python setup.py build # python setup.py install # as root
This feature is coming soon. Sit tight!