CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Tue, 19 Aug 2025 09:46:07 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100126090930
location: https://web.archive.org/web/20100126090930/https://github.com/trondn/memcached-engines
server-timing: captures_list;dur=0.951635, exclusion.robots;dur=0.029356, exclusion.robots.policy;dur=0.016768, esindex;dur=0.018864, cdx.remote;dur=46.548029, LoadShardBlock;dur=222.413337, PetaboxLoader3.datanode;dur=60.008998, PetaboxLoader3.resolve;dur=100.160611
x-app-server: wwwb-app201
x-ts: 302
x-tr: 356
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app201; 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: Tue, 19 Aug 2025 09:46:08 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Tue, 26 Jan 2010 09:09:26 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "fae2b88cef7240642cbecbde5f2e9c0b"
x-archive-orig-x-runtime: 149ms
x-archive-orig-content-length: 24578
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: Tue, 26 Jan 2010 09:09:30 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Tue, 26 Jan 2010 09:09:30 GMT", ; rel="memento"; datetime="Tue, 26 Jan 2010 09:09:30 GMT", ; rel="next memento"; datetime="Thu, 28 Jan 2010 01:35:44 GMT", ; rel="last memento"; datetime="Tue, 29 Dec 2020 01:39:52 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_13_20100126062519_crawl102-c/51_14_20100126090925_crawl101.arc.gz
server-timing: captures_list;dur=0.529760, exclusion.robots;dur=0.023619, exclusion.robots.policy;dur=0.013851, esindex;dur=0.009859, cdx.remote;dur=114.273306, LoadShardBlock;dur=241.927954, PetaboxLoader3.datanode;dur=157.413750, PetaboxLoader3.resolve;dur=306.608084, load_resource;dur=300.022366
x-app-server: wwwb-app201
x-ts: 200
x-tr: 714
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
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
trondn's memcached-engines at master - GitHub
This service is courtesy of Pledgie.
trondn / memcached-engines
- Source
- Commits
- Network (2)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
-
Branches (1)
- master ✓
- Tags (0)
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
Small stupid implementation of a memcached engine implemented in C++ using STL — Read more

Trond Norbye (author)
Wed Dec 30 14:36:38 -0800 2009
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Fri Dec 11 04:38:00 -0800 2009 | Create example storage engine in C++ [Trond Norbye] |
![]() |
AUTHORS | Fri Dec 11 04:38:00 -0800 2009 | Create example storage engine in C++ [Trond Norbye] |
![]() |
COPYING | Fri Dec 11 04:38:00 -0800 2009 | Create example storage engine in C++ [Trond Norbye] |
![]() |
Makefile.am | Wed Dec 30 14:36:38 -0800 2009 | Removed hardcoding of -lsqlite3 [Trond Norbye] |
![]() |
README | Sun Dec 20 12:05:18 -0800 2009 | Add an example of a persistent engine using SQLite [Trond Norbye] |
![]() |
config/ | Fri Dec 11 04:38:00 -0800 2009 | Create example storage engine in C++ [Trond Norbye] |
![]() |
configure.ac | Sun Dec 20 12:05:18 -0800 2009 | Add an example of a persistent engine using SQLite [Trond Norbye] |
![]() |
m4/ | Fri Dec 11 04:38:00 -0800 2009 | Create example storage engine in C++ [Trond Norbye] |
![]() |
src/ | Sun Dec 20 12:56:38 -0800 2009 | using dbname consistently throughout [steveyen] |
README
Hi! You have just downloaded the source for various example engines I've created for demo purposes of the storage engine API in memcached. C++ === I know that a lot of people dislike C, and would prefer to use C++ to create their engine. To show you how to write an engine in C++, I decided to create a small engine using STL containers to store the objects in. You'll find this implementation in src/stl Persistent ========== People always talk about a persistent cache, so I thought I could write up a small example where I just tweaked the default engine from the memcached source distribution to store it's data in a database (sqlite). That means that items.[ch] assoc.[ch] slabs.[ch] is copied from the source distribution, and persistent_engine.[ch] is almost identical to default_engine.[ch]. Hope you will find the examples interesting. Cheers, Trond Norbye