タグ

memcachedに関するseikoudoku2000のブックマーク (15)

  • Kazuho@Cybozu Labs: Mycached: memcached protocol support for MySQL

    It is a well-known fact that the bottlenecks of MySQL does not exist in its storage engines, but rather in the core, for example, its parser and execution planner.  Last weekend I started to wonder how fast MySQL could be if those bottlenecks were skipped.  Not being able to stop my curiousity, I started  adding memcached proctol support to MySQL as a UDF.  And that is Mycached. From what I unders

  • mixi大規模障害について 解明編 - mixi engineer blog


    G miximemcached memcachedlibevent memcachedlibevent使() libevent使event_basemain threadmain_base使 static struct event_base *main_base; ... int main (int argc, char **argv) { ... main_base = event_init(); ... /* enter the ev
    mixi大規模障害について 解明編 - mixi engineer blog
  • mixi大規模障害について その2 - mixi engineer blog

    こんにちは。システム技術部たんぽぽGの森です 補足を追記しました (2010/08/20 15時) 先日のmixi大規模障害についての続報です 今回は小ネタはありません はじめに まず初めにtwitter/blogなどを通じて今回の問題の解析を行っていただいたみなさんに感謝の言葉を捧げたいと思います kzk_moverさん stanakaさん mala(bulkneets)さん llameradaさん (順不同) ありがとうございました 書き漏らした人ごめんなさい memcachedはすごい 今回の件でmemcachedに対して不安感を持たれた方もおられるとお聞きしました 説明不足だったせいで誤解を与えてしまい申し訳ありません きちんと設定および監視を行っていれば通常の使用にはまったく問題はありません 弊社にて -c 30万で起動したmemcachedに対して、先のテストスクリプトに

    mixi大規模障害について その2 - mixi engineer blog
  • 第1回 memcachedの起動オプションを把握しよう | gihyo.jp


    1.4    1.4memcached 1.41.2.51.4.5 1.21.4 memcachedmemcached-h使 $ memcached -h memcached 1.x.x -p <num> TCP port number to listen on (default: 11211) -U <num> UDP port number t
    第1回 memcachedの起動オプションを把握しよう | gihyo.jp
  • libevent-1.3b, libmemcached-1.4.4 で固まる? - moratorium


    libevent-1.3b, libmemcached-1.4.4 ? 2010-08-13 (Fri) 0:56 Uncategorized mixineal調libevent(evhttp)使 Neal libevent-1.3b, libmemcached-1.4.4memcached-cmemcached.c /* * If needed, increase rlimits to allow as many connections * as needed. */
  • Facebookが大規模スケーラビリティへの挑戦で学んだこと(前編)~800億枚の写真データとPHPのスケーラビリティ問題


    Facebook800PHP 3SNSFacebook33PHPC++MemcacheMySQL3Facebook100Gb   Jeff RothschildFacebook108High Performance at Mas
    Facebookが大規模スケーラビリティへの挑戦で学んだこと(前編)~800億枚の写真データとPHPのスケーラビリティ問題
  • memcached+PostgreSQLで実現するハイパフォーマンスWebアプリケーション構築(1/4) ― @IT


    稿memcached 1.2.5 PostgreSQL 8.3.1 OSCentOS 5Linux kernel 2.6  bash CPUIntel Core2Quad 9660 2.4GHz RAMPC2-6400 8GBytes memcachedDanga Interactive memcachedOracleMySQLRDBMS item me
    memcached+PostgreSQLで実現するハイパフォーマンスWebアプリケーション構築(1/4) ― @IT
  • 第2回 memcachedのメモリストレージを理解する | gihyo.jp


     memcachedmemcachedmemcached Slab Allocation memcachedSlab Allocator使mallocfreeOSmemcached
    第2回 memcachedのメモリストレージを理解する | gihyo.jp
  • YAPC::Asia 2008の資料公開します - mixi engineer blog


    51516PerlYAPC::Asia 200822 memcached in mixi [pdf] memcachedmixi1memcachedmemcachedTokyoTyrantmemcachedtmaesakaTokyoTyrant
    YAPC::Asia 2008の資料公開します - mixi engineer blog
  • http://www.whalin.com/memcached/javadocs/

  • はてなブックマークの裏側その後 - naoyaのはてなダイアリー


    Perl! Vol.1  ThinkIT Perl Perl  http://www.thinkit.co.jp/free/article/0610/1/1/ http://www.thinkit.co.jp/free/article/0610/1/2/   6 45,000 535 5,000/ 17 10 : 60,000
    はてなブックマークの裏側その後 - naoyaのはてなダイアリー
  • memcached | feedforce Engineers' blog

    何? オブジェクトをメモリにキャッシュするデーモン。 動的ページを持つウェブアプリケーションの裏側で動くデータベースへの負荷を軽減させることを目的にデザインされている。 - 公式サイト memcached: a distributed memory object caching system 特徴 オブジェクトをメモリ上にキャッシュ 複数ホスト間でキャッシュ共有可能(リモートからキャッシュにアクセス可能) 各言語用のインタフェースライブラリがそろってます 実績豊富 よくある用途 セッションストア DBへのクエリ結果のキャッシュ アプリケーションレベルのオブジェクト共有(静的インスタンス) セッションストア 複数サーバ間のセッション情報共有 DBを使う方法と比べて負荷がかからなくてうれしい セッションストアとしての問題点 レプリケーションの仕組みがない。 ので、アプリケーションの性質によって

    memcached | feedforce Engineers' blog
  • PHP: Memcache - Manual

    GOTCHA: Recently I was tasked with moving from PECL memcache to PECL memcached and ran into a major problem -- memcache and memcached serialize data differently, meaning that data written with one library can't necessarily be read with the other library. For example, If you write an object or an array with memcache, it's interpreted as an integer by memcached. If you write it with memcached, it's

  • memcached: a distributed memory object caching system

    What is Memcached? Free & open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load. Memcached is an in-memory key-value store for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering. Memcached is simple yet powerful.

  • 1