blob: 9baa7c274164f448cc77bdc6ac3145f4eff0c619 [file] [log] [blame]
jcgregorio26c0cd72006-07-03 17:36:17 +00001<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2<html>
3<head>
4<link rel="STYLESHEET" href="ref.css" type='text/css' />
5<link rel="first" href="ref.html" title='The httplib2 Library' />
6<link rel='contents' href='contents.html' title="Contents" />
7<link rel='last' href='about.html' title='About this document...' />
8<link rel='help' href='about.html' title='About this document...' />
9<link rel="next" href="response-objects.html" />
10<link rel="prev" href="http-objects.html" />
11<link rel="parent" href="module-httplib2.html" />
12<link rel="next" href="response-objects.html" />
jcgregorio88ada9a2007-05-03 13:20:38 +000013<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
jcgregorio26c0cd72006-07-03 17:36:17 +000014<meta name='aesop' content='information' />
15<title>1.1.2 Cache Objects</title>
16</head>
17<body>
jcgregorio88ada9a2007-05-03 13:20:38 +000018<div class="navigation">
jcgregorio26c0cd72006-07-03 17:36:17 +000019<div id='top-navigation-panel' xml:id='top-navigation-panel'>
20<table align="center" width="100%" cellpadding="0" cellspacing="2">
21<tr>
jcgregorio88ada9a2007-05-03 13:20:38 +000022<td class='online-navigation'><a rel="prev" title="1.1.1 http Objects"
jcgregorio26c0cd72006-07-03 17:36:17 +000023 href="http-objects.html"><img src='previous.png'
jcgregorio88ada9a2007-05-03 13:20:38 +000024 border='0' height='32' alt='Previous Page' width='32' /></a></td>
jcgregorio26c0cd72006-07-03 17:36:17 +000025<td class='online-navigation'><a rel="parent" title="1.1 httplib2 A comprehensive"
26 href="module-httplib2.html"><img src='up.png'
jcgregorio88ada9a2007-05-03 13:20:38 +000027 border='0' height='32' alt='Up one Level' width='32' /></a></td>
28<td class='online-navigation'><a rel="next" title="1.1.3 response Objects"
jcgregorio26c0cd72006-07-03 17:36:17 +000029 href="response-objects.html"><img src='next.png'
jcgregorio88ada9a2007-05-03 13:20:38 +000030 border='0' height='32' alt='Next Page' width='32' /></a></td>
jcgregorio26c0cd72006-07-03 17:36:17 +000031<td align="center" width="100%">The httplib2 Library</td>
32<td class='online-navigation'><a rel="contents" title="Table of Contents"
33 href="contents.html"><img src='contents.png'
jcgregorio88ada9a2007-05-03 13:20:38 +000034 border='0' height='32' alt='Contents' width='32' /></a></td>
jcgregorio26c0cd72006-07-03 17:36:17 +000035<td class='online-navigation'><img src='blank.png'
36 border='0' height='32' alt='' width='32' /></td>
37<td class='online-navigation'><img src='blank.png'
38 border='0' height='32' alt='' width='32' /></td>
39</tr></table>
40<div class='online-navigation'>
41<b class="navlabel">Previous:</b>
jcgregorio88ada9a2007-05-03 13:20:38 +000042<a class="sectref" rel="prev" href="http-objects.html">1.1.1 Http Objects</a>
jcgregorio26c0cd72006-07-03 17:36:17 +000043<b class="navlabel">Up:</b>
jcgregorio88ada9a2007-05-03 13:20:38 +000044<a class="sectref" rel="parent" href="module-httplib2.html">1.1 httplib2 A comprehensive</a>
jcgregorio26c0cd72006-07-03 17:36:17 +000045<b class="navlabel">Next:</b>
jcgregorio88ada9a2007-05-03 13:20:38 +000046<a class="sectref" rel="next" href="response-objects.html">1.1.3 Response Objects</a>
jcgregorio26c0cd72006-07-03 17:36:17 +000047</div>
48<hr /></div>
jcgregorio88ada9a2007-05-03 13:20:38 +000049</div>
jcgregorio26c0cd72006-07-03 17:36:17 +000050<!--End of Navigation Panel-->
51
jcgregorio88ada9a2007-05-03 13:20:38 +000052<h2><a name="SECTION002120000000000000000"></a>
53<a name="cache-objects"></a>
54<br>
jcgregorio26c0cd72006-07-03 17:36:17 +0000551.1.2 Cache Objects
jcgregorio88ada9a2007-05-03 13:20:38 +000056</h2>
jcgregorio26c0cd72006-07-03 17:36:17 +000057
jcgregorio88ada9a2007-05-03 13:20:38 +000058<p>
jcgregorio26c0cd72006-07-03 17:36:17 +000059If you wish to supply your own caching implementation
Joe Gregorio26763712013-02-19 15:57:37 -050060then you will need to pass in an object that supports the
jcgregorio26c0cd72006-07-03 17:36:17 +000061following methods. Note that the <tt class="module">memcache</tt> module
62supports this interface natively.
63
jcgregorio88ada9a2007-05-03 13:20:38 +000064<p>
jcgregorio26c0cd72006-07-03 17:36:17 +000065<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
joe.gregorioab704ef2007-10-23 15:26:12 +000066 <td><nobr><b><tt id='l2h-23' xml:id='l2h-23' class="method">get</tt></b>(</nobr></td>
jcgregorio26c0cd72006-07-03 17:36:17 +000067 <td><var>key</var>)</td></tr></table></dt>
68<dd>
69Takes a string <var>key</var> and returns the value as a string.
70</dl>
71
jcgregorio88ada9a2007-05-03 13:20:38 +000072<p>
jcgregorio26c0cd72006-07-03 17:36:17 +000073<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
joe.gregorioab704ef2007-10-23 15:26:12 +000074 <td><nobr><b><tt id='l2h-24' xml:id='l2h-24' class="method">set</tt></b>(</nobr></td>
jcgregorio26c0cd72006-07-03 17:36:17 +000075 <td><var>key, value</var>)</td></tr></table></dt>
76<dd>
77Takes a string <var>key</var> and <var>value</var> and stores it in the cache.
78</dl>
79
jcgregorio88ada9a2007-05-03 13:20:38 +000080<p>
jcgregorio26c0cd72006-07-03 17:36:17 +000081<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
joe.gregorioab704ef2007-10-23 15:26:12 +000082 <td><nobr><b><tt id='l2h-25' xml:id='l2h-25' class="method">delete</tt></b>(</nobr></td>
jcgregorio26c0cd72006-07-03 17:36:17 +000083 <td><var>key</var>)</td></tr></table></dt>
84<dd>
85Deletes the cached value stored at <var>key</var>. The value
86of <var>key</var> is a string.
87</dl>
88
jcgregorio88ada9a2007-05-03 13:20:38 +000089<p>
jcgregorio26c0cd72006-07-03 17:36:17 +000090
jcgregorio88ada9a2007-05-03 13:20:38 +000091<div class="navigation">
jcgregorio26c0cd72006-07-03 17:36:17 +000092<div class='online-navigation'>
93<p></p><hr />
94<table align="center" width="100%" cellpadding="0" cellspacing="2">
95<tr>
jcgregorio88ada9a2007-05-03 13:20:38 +000096<td class='online-navigation'><a rel="prev" title="1.1.1 http Objects"
jcgregorio26c0cd72006-07-03 17:36:17 +000097 href="http-objects.html"><img src='previous.png'
jcgregorio88ada9a2007-05-03 13:20:38 +000098 border='0' height='32' alt='Previous Page' width='32' /></a></td>
jcgregorio26c0cd72006-07-03 17:36:17 +000099<td class='online-navigation'><a rel="parent" title="1.1 httplib2 A comprehensive"
100 href="module-httplib2.html"><img src='up.png'
jcgregorio88ada9a2007-05-03 13:20:38 +0000101 border='0' height='32' alt='Up one Level' width='32' /></a></td>
102<td class='online-navigation'><a rel="next" title="1.1.3 response Objects"
jcgregorio26c0cd72006-07-03 17:36:17 +0000103 href="response-objects.html"><img src='next.png'
jcgregorio88ada9a2007-05-03 13:20:38 +0000104 border='0' height='32' alt='Next Page' width='32' /></a></td>
jcgregorio26c0cd72006-07-03 17:36:17 +0000105<td align="center" width="100%">The httplib2 Library</td>
106<td class='online-navigation'><a rel="contents" title="Table of Contents"
107 href="contents.html"><img src='contents.png'
jcgregorio88ada9a2007-05-03 13:20:38 +0000108 border='0' height='32' alt='Contents' width='32' /></a></td>
jcgregorio26c0cd72006-07-03 17:36:17 +0000109<td class='online-navigation'><img src='blank.png'
110 border='0' height='32' alt='' width='32' /></td>
111<td class='online-navigation'><img src='blank.png'
112 border='0' height='32' alt='' width='32' /></td>
113</tr></table>
114<div class='online-navigation'>
115<b class="navlabel">Previous:</b>
jcgregorio88ada9a2007-05-03 13:20:38 +0000116<a class="sectref" rel="prev" href="http-objects.html">1.1.1 Http Objects</a>
jcgregorio26c0cd72006-07-03 17:36:17 +0000117<b class="navlabel">Up:</b>
jcgregorio88ada9a2007-05-03 13:20:38 +0000118<a class="sectref" rel="parent" href="module-httplib2.html">1.1 httplib2 A comprehensive</a>
jcgregorio26c0cd72006-07-03 17:36:17 +0000119<b class="navlabel">Next:</b>
jcgregorio88ada9a2007-05-03 13:20:38 +0000120<a class="sectref" rel="next" href="response-objects.html">1.1.3 Response Objects</a>
jcgregorio26c0cd72006-07-03 17:36:17 +0000121</div>
122</div>
123<hr />
jcgregoriocde4f092007-03-08 21:59:04 +0000124<span class="release-info">Release 0.3, documentation updated on Mar 8, 2007.</span>
jcgregorio88ada9a2007-05-03 13:20:38 +0000125</div>
jcgregorio26c0cd72006-07-03 17:36:17 +0000126<!--End of Navigation Panel-->
127
jcgregorio88ada9a2007-05-03 13:20:38 +0000128</body>
129</html>