root/trunk/website/apis.bml @ 715

Revision 715, 5.0 kB (checked in by dormando, 21 months ago)

Add new BeIT client to website.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1<?page
2wintitle=>client apis
3body<=
4
5<?h1 Perl API h1?>
6
7<p> An object-oriented Perl module can be <a href="http://search.cpan.org/dist/Cache-Memcached/">found
8on CPAN</a> as <tt>Cache::Memcached</tt> or <a href="http://code.sixapart.com/svn/memcached/trunk/api/perl/">
9in Subversion</a> (<a href="http://code.sixapart.com/svn/memcached/trunk/api/perl/ChangeLog">ChangeLog</a>).
10(GPL/Artistic)</p>
11
12<p>The Perl API takes advantage of the server's opaque flag support and
13sets its "complex" flag whenever the object being stored or retrieved
14isn't a plain scalar.  In that case, the <tt>Storable</tt> module is
15used to freeze and thaw the value automatically going in and out of
16the memcached.</p>
17
18<p>There is also Cache::Memcached::Fast---another Perl client written in C,
19largely compatible with the original Cache::Memcached. Available on CPAN at <a
20href="http://search.cpan.org/dist/Cache-Memcached-Fast/">http://search.cpan.org/dist/Cache-Memcached-Fast/</a>.</p>
21
22<?h1 PHP API h1?>
23
24<p>There are tons of PHP libraries available, in different conditions.  But it now seems there's an official one:</p>
25<ul>
26<li><a href="http://pecl.php.net/package/memcache">PHP PECL memcached client</a> -- official PHP client</li>
27</ul>
28
29<?h1 Python API h1?>
30
31<p>The Python client we'd previously released was just a prototype, and we don't have regular Python programmers on hand. The folks at Tummy.com have took over maintenance. See <a href="ftp://ftp.tummy.com/pub/python-memcached/">ftp://ftp.tummy.com/pub/python-memcached/</a> for the latest versions.</p>
32
33<?h1 Ruby API h1?>
34
35<ul>
36<li><a href="http://www.deveiate.org/code/Ruby-MemCache.html">http://www.deveiate.org/code/Ruby-MemCache.html</a></li>
37<li>gem install memcache-client</li>
38<li><a href="http://blog.evanweaver.com/files/doc/fauna/memcached/">http://blog.evanweaver.com/files/doc/fauna/memcached/</a>. C backed client wrapping libmemcached.
39</ul>
40
41<?h1 Java API h1?>
42<p>A Java API is maintained by <a href="mailto:greg@meetup.com">Greg Whalin</a> from <a href="http://www.meetup.com/">Meetup.com</a>.  You can find that library here:
43
44<ul>
45<li><a href="http://www.whalin.com/memcached/">http://www.whalin.com/memcached/</a> -- Java API for memcached</li>
46</ul>
47
48<p>An improved Java API maintained by Dustin Sallings is also available.  Aggressively optimised, ability to run async, supports binary protocol, etc. See site for details:
49
50<ul>
51<li><a
52href="http://bleu.west.spy.net/~dustin/projects/memcached/">http://bleu.west.spy.net/~dustin/projects/memcached/</a> -- Improved Java API for memcached</li>
53</ul>
54
55<?h1 C# API h1?>
56<p>There are multiple C# APIs:
57
58<ul>
59<li><a href="https://sourceforge.net/projects/memcacheddotnet/">https://sourceforge.net/projects/memcacheddotnet/</a></li>
60<li><a href="http://www.codeplex.com/EnyimMemcached/">http://www.codeplex.com/EnyimMemcached/</a> - Client developed in .NET 2.0 keeping performance and extensibility in mind. (Supports consistent hashing.)</li>
61<li><a href="http://code.google.com/p/beitmemcached/">http://code.google.com/p/beitmemcached/</a> - Client developed by BeIT with many new features.</li>
62</ul>
63
64<?h1 C API h1?>
65<p>Multiple C libraries for memcached exist:</p>
66<ul>
67<li><a href="http://www.outoforder.cc/projects/libs/apr_memcache/">apr_memcache</a> by Paul Querna; Apache Software License version 2.0</li>
68<li><a href="http://tangent.org/552/libmemcached.html">libmemcached</a> by Brian Aker; BSD license. This is a new library, under heavy development.</li>
69<li><a href="http://people.freebsd.org/~seanc/libmemcache/">libmemcache</a> by Sean Chittenden; BSD license. This is the original C library. It is no longer under active development. You should try libmemcached instead.</li>
70</ul>
71
72<?h1 Postgres API h1?>
73<p>The pgmemcache project allows
74you to access memcache servers from Postgresql Stored Procedures and Triggers. 
75More details and downloads are available at:</p>
76
77<ul>
78<li><a href="http://pgfoundry.org/projects/pgmemcache/">http://pgfoundry.org/projects/pgmemcache/</a></li>
79</ul>
80
81<?h1 Chicken Scheme h1?>
82<p>
83</p>
84<ul>
85<li><a href="http://chicken.wiki.br/memcached">http://chicken.wiki.br/memcached</a> -- Chicken Scheme library</li>
86</ul>
87
88<?h1 MySQL API h1?>
89<p>The memcache_engine allows memcache to work as a storage engine to MySQL.
90This means that you can SELECT/UPDATE/INSERTE/DELETE from it as though it is a
91table in MySQL.
92</p>
93<ul>
94<li><a href="http://tangent.org/index.pl?node_id=506">memcache_engine</a></li>
95</ul>
96<p>A set of MySQL UDFs (user defined functions) to work with memcached using
97libmemcached.
98</p>
99<ul>
100<li><a href="http://tangent.org/586/Memcached_Functions_for_MySQL.html">MySQL
101UDFs for memcached</a></li>
102</ul>
103
104<?h1 Protocol h1?> <p>To write a new client, check out the <a
105href="http://code.sixapart.com/svn/memcached/trunk/server/doc/protocol.txt">protocol
106docs</a>.  Be aware that the most important part of the client is the
107hashing across multiple servers, based on the key, or an optional
108caller-provided hashing value.  Feel free to join the mailing list (or
109mail me directly) for help, inclusion in Subversion, and/or a link to your
110client from this site.</p>
111
112<=body
113page?>
Note: See TracBrowser for help on using the browser.