Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
balor committed May 7, 2011
0 parents commit 38c9b69
Show file tree
Hide file tree
Showing 9 changed files with 490 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DS_Store
node_modules
*.sock
4 changes: 4 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
support
test
examples
*.sock
10 changes: 10 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

0.0.2 / 2010-01-03
==================

* Created basic version that actually works

0.0.1 / 2010-01-03
==================

* Initial release
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
index.html: lib/connect-memcached.js
dox \
--title "connection-memcached" \
--desc "Memcached session store for Connect" \
--ribbon "https://github.com/balor/connection-memcached" \
$< > $@
60 changes: 60 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@

# connect-memcached

Memcached session store, using [node-memcached](http://github.com/3rd-Eden/node-memcached) for communication with cache server.

## Installation

via npm:

$ npm install connect-memcached

## Example

var connect = require('connect');
var MemcachedStore = require('connect-memcached');

connect.createServer(
connect.cookieParser(),
connect.session({
store: new MemcachedStore({
hosts: [
'192.168.1.65:11213',
'192.168.1.66:11213',
'192.168.1.67:11213'
]
}),
secret: 'thisissosick'
})
);

## Options

- `hosts` Memcached servers locations, can by string, array, hash.
- ... Rest of given option will be passed directly to the node-memcached constructor.
For details see [node-memcached](http://github.com/3rd-Eden/node-memcached).

## License

(The MIT License)

Copyright (c) 2011 Michał Thoma &lt;michal@balor.pl&gt;

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
263 changes: 263 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,263 @@
<a href="https://github.com/balor/hop"><img alt="Fork me on GitHub" id="ribbon" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a><html>
<head>
<title>connection-memcached</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<style>body {
margin: 0;
padding: 0;
font: 14px/1.5 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
color: #252519;
}
a {
color: #252519;
}
a:hover {
text-decoration: underline;
color: #19469D;
}
p {
margin: 12px 0;
}
h1, h2, h3 {
margin: 0;
padding: 0;
}
table#source {
width: 100%;
border-collapse: collapse;
}
table#source td:first-child {
padding: 30px 40px 30px 40px;
vertical-align: top;
}
table#source td:first-child,
table#source td:first-child pre {
width: 450px;
}
table#source td:last-child {
padding: 30px 0 30px 40px;
border-left: 1px solid #E5E5EE;
background: #F5F5FF;
}
table#source tr {
border-bottom: 1px solid #E5E5EE;
}
table#source tr.filename {
padding-top: 40px;
border-top: 1px solid #E5E5EE;
}
table#source tr.filename td:first-child {
text-transform: capitalize;
}
table#source tr.filename td:last-child {
font-size: 12px;
}
table#source tr.filename h2 {
margin: 0;
padding: 0;
cursor: pointer;
}
table#source tr.code h1,
table#source tr.code h2,
table#source tr.code h3 {
margin-top: 30px;
font-family: "Lucida Grande", "Helvetica Nueue", Arial, sans-serif;
font-size: 18px;
}
table#source tr.code h2 {
font-size: 16px;
}
table#source tr.code h3 {
font-size: 14px;
}
table#source tr.code ul {
margin: 15px 0 15px 35px;
padding: 0;
}
table#source tr.code ul li {
margin: 0;
padding: 1px 0;
}
table#source tr.code ul li p {
margin: 0;
padding: 0;
}
table#source tr.code td:first-child pre {
padding: 20px;
}
#ribbon {
position: fixed;
top: 0;
right: 0;
}
code .string { color: #219161; }
code .regexp { color: #219161; }
code .keyword { color: #954121; }
code .number { color: #19469D; }
code .comment { color: #bbb; }
code .this { color: #19469D; }</style>
<script>
$(function(){
$('tr.code').hide();
$('tr.filename').toggle(function(){
$(this).nextUntil('.filename').fadeIn();
}, function(){
$(this).nextUntil('.filename').fadeOut();
});
});
</script>
</head>
<body>
<table id="source"><tbody><tr><td><h1>connection-memcached</h1><p>Memcached session store for Connect</p></td><td></td></tr><tr class="filename"><td><h2 id="lib/connect-memcached.js"><a href="#">connect-memcached</a></h2></td><td>lib/connect-memcached.js</td></tr><tr class="code">
<td class="docs">
<p>Library version.
</p>
</td>
<td class="code">
<pre><code><span class="variable">exports</span>.<span class="variable">version</span> = <span class="string">'0.0.2'</span>;</code></pre>
</td>
</tr>
<tr class="code">
<td class="docs">
<p>Module dependencies.
</p>
</td>
<td class="code">
<pre><code><span class="keyword">var</span> <span class="class">Store</span> = <span class="variable">require</span>(<span class="string">'connect'</span>).<span class="variable">session</span>.<span class="class">Store</span>;
<span class="keyword">var</span> <span class="class">Memcached</span> = <span class="variable">require</span>(<span class="string">'memcached'</span>);</code></pre>
</td>
</tr>
<tr class="code">
<td class="docs">
<p>One day in seconds.
</p>
</td>
<td class="code">
<pre><code><span class="keyword">var</span> <span class="variable">oneDay</span> = <span class="number integer">86400</span>;</code></pre>
</td>
</tr>
<tr class="code">
<td class="docs">
<p>Initialize MemcachedStore with the given <code>options</code>.</p>

<h2></h2>

<ul><li><p><strong>param</strong>: <em>Object</em> options</p></li><li><p><strong>api</strong>: <em>public</em></p></li></ul>
</td>
<td class="code">
<pre><code><span class="keyword">var</span> <span class="class">MemcachedStore</span> = <span class="variable">module</span>.<span class="variable">exports</span> = <span class="keyword">function</span> <span class="class">MemcachedStore</span>(<span class="variable">options</span>) {
<span class="variable">options</span> = <span class="variable">options</span> || {};
<span class="class">Store</span>.<span class="variable">call</span>(<span class="this">this</span>, <span class="variable">options</span>);
<span class="keyword">if</span> (!<span class="variable">options</span>.<span class="variable">hosts</span>) {
<span class="variable">options</span>.<span class="variable">hosts</span> = <span class="string">'127.0.0.1:11211'</span>;
}
<span class="this">this</span>.<span class="variable">client</span> = <span class="keyword">new</span> <span class="class">Memcached</span>(<span class="variable">options</span>.<span class="variable">hosts</span>, <span class="variable">options</span>);
<span class="variable">console</span>.<span class="variable">log</span>(&<span class="variable">quot</span>;<span class="class">MemcachedStore</span> <span class="variable">initialized</span> <span class="keyword">for</span> <span class="variable">servers</span>: &<span class="variable">quot</span>; + <span class="variable">options</span>.<span class="variable">hosts</span>);

<span class="this">this</span>.<span class="variable">client</span>.<span class="variable">on</span>(&<span class="variable">quot</span>;<span class="variable">issue</span>&<span class="variable">quot</span>;, <span class="keyword">function</span>(<span class="variable">issue</span>) {
<span class="variable">console</span>.<span class="variable">log</span>(&<span class="variable">quot</span>;<span class="class">MemcachedStore</span>::<span class="class">Issue</span> @ &<span class="variable">quot</span>; + <span class="variable">issue</span>.<span class="variable">server</span> + &<span class="variable">quot</span>;: &<span class="variable">quot</span>; +
<span class="variable">issue</span>.<span class="variable">messages</span> + &<span class="variable">quot</span>;, &<span class="variable">quot</span>; + <span class="variable">issue</span>.<span class="variable">retries</span> + &<span class="variable">quot</span>; <span class="variable">attempts</span> <span class="variable">left</span>&<span class="variable">quot</span>;);
});
};</code></pre>
</td>
</tr>
<tr class="code">
<td class="docs">
<p>Inherit from <code>Store</code>.
</p>
</td>
<td class="code">
<pre><code><span class="class">MemcachedStore</span>.<span class="variable">prototype</span>.<span class="variable">__proto__</span> = <span class="class">Store</span>.<span class="variable">prototype</span>;</code></pre>
</td>
</tr>
<tr class="code">
<td class="docs">
<p>Attempt to fetch session by the given <code>sid</code>.</p>

<h2></h2>

<ul><li><p><strong>param</strong>: <em>String</em> sid</p></li><li><p><strong>param</strong>: <em>Function</em> fn</p></li><li><p><strong>api</strong>: <em>public</em></p></li></ul>
</td>
<td class="code">
<pre><code><span class="class">MemcachedStore</span>.<span class="variable">prototype</span>.<span class="variable">get</span> = <span class="keyword">function</span>(<span class="variable">sid</span>, <span class="variable">fn</span>) {
<span class="this">this</span>.<span class="variable">client</span>.<span class="variable">get</span>(<span class="variable">sid</span>, <span class="keyword">function</span>(<span class="variable">err</span>, <span class="variable">data</span>) {
<span class="keyword">try</span> {
<span class="keyword">if</span> (!<span class="variable">data</span>) {
<span class="keyword">return</span> <span class="variable">fn</span>();
}
<span class="variable">fn</span>(<span class="keyword">null</span>, <span class="class">JSON</span>.<span class="variable">parse</span>(<span class="variable">data</span>.<span class="variable">toString</span>()));
} <span class="keyword">catch</span> (<span class="variable">err</span>) {
<span class="variable">fn</span>(<span class="variable">err</span>);
}
});
};</code></pre>
</td>
</tr>
<tr class="code">
<td class="docs">
<p>Commit the given <code>sess</code> object associated with the given <code>sid</code>.</p>

<h2></h2>

<ul><li><p><strong>param</strong>: <em>String</em> sid</p></li><li><p><strong>param</strong>: <em>Session</em> sess</p></li><li><p><strong>param</strong>: <em>Function</em> fn</p></li><li><p><strong>api</strong>: <em>public</em></p></li></ul>
</td>
<td class="code">
<pre><code><span class="class">MemcachedStore</span>.<span class="variable">prototype</span>.<span class="variable">set</span> = <span class="keyword">function</span>(<span class="variable">sid</span>, <span class="variable">sess</span>, <span class="variable">fn</span>) {
<span class="keyword">try</span> {
<span class="keyword">var</span> <span class="variable">maxAge</span> = <span class="variable">sess</span>.<span class="variable">cookie</span>.<span class="variable">maxAge</span>
<span class="keyword">var</span> <span class="variable">ttl</span> = <span class="string">'number'</span> == <span class="keyword">typeof</span> <span class="variable">maxAge</span> ? <span class="variable">maxAge</span> / <span class="number integer">1000</span> | <span class="number integer">0</span> : <span class="variable">oneDay</span>
<span class="keyword">var</span> <span class="variable">sess</span> = <span class="class">JSON</span>.<span class="variable">stringify</span>(<span class="variable">sess</span>);

<span class="this">this</span>.<span class="variable">client</span>.<span class="variable">set</span>(<span class="variable">sid</span>, <span class="variable">sess</span>, <span class="variable">ttl</span>, <span class="keyword">function</span>() {
<span class="variable">fn</span> &<span class="variable">amp</span>;&<span class="variable">amp</span>; <span class="variable">fn</span>.<span class="variable">apply</span>(<span class="this">this</span>, <span class="variable">arguments</span>);
});
} <span class="keyword">catch</span> (<span class="variable">err</span>) {
<span class="variable">fn</span> &<span class="variable">amp</span>;&<span class="variable">amp</span>; <span class="variable">fn</span>(<span class="variable">err</span>);
}
};</code></pre>
</td>
</tr>
<tr class="code">
<td class="docs">
<p>Destroy the session associated with the given <code>sid</code>.</p>

<h2></h2>

<ul><li><p><strong>param</strong>: <em>String</em> sid</p></li><li><p><strong>api</strong>: <em>public</em></p></li></ul>
</td>
<td class="code">
<pre><code><span class="class">MemcachedStore</span>.<span class="variable">prototype</span>.<span class="variable">destroy</span> = <span class="keyword">function</span>(<span class="variable">sid</span>, <span class="variable">fn</span>) {
<span class="this">this</span>.<span class="variable">client</span>.<span class="variable">del</span>(<span class="variable">sid</span>, <span class="variable">fn</span>);
};</code></pre>
</td>
</tr>
<tr class="code">
<td class="docs">
<p>Fetch number of sessions.</p>

<h2></h2>

<ul><li><p><strong>param</strong>: <em>Function</em> fn</p></li><li><p><strong>api</strong>: <em>public</em></p></li></ul>
</td>
<td class="code">
<pre><code><span class="class">MemcachedStore</span>.<span class="variable">prototype</span>.<span class="variable">length</span> = <span class="keyword">function</span>(<span class="variable">fn</span>) {
<span class="this">this</span>.<span class="variable">client</span>.<span class="variable">items</span>(<span class="variable">fn</span>);
};</code></pre>
</td>
</tr>
<tr class="code">
<td class="docs">
<p>Clear all sessions.</p>

<h2></h2>

<ul><li><p><strong>param</strong>: <em>Function</em> fn</p></li><li><p><strong>api</strong>: <em>public</em></p></li></ul>
</td>
<td class="code">
<pre><code><span class="class">MemcachedStore</span>.<span class="variable">prototype</span>.<span class="variable">clear</span> = <span class="keyword">function</span>(<span class="variable">fn</span>) {
<span class="this">this</span>.<span class="variable">client</span>.<span class="variable">flush</span>(<span class="variable">fn</span>);
};
</code></pre>
</td>
</tr> </body>
</html></tbody></table>
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

module.exports = require('./lib/connect-memcached');
Loading

0 comments on commit 38c9b69

Please sign in to comment.