2014-02-01から1ヶ月間の記事一覧

Web検索APIがあちこち提供終了しているのでbingのAPIを試す 簡易メモ

PHP

array( "request_fulluri" => true, "header" => "Authorization: Basic " . base64_encode($key . ":" . $key) ) ); $co…

mongodbのmapReduce 簡易メモ

keyを集計して件数を取得 mapreduce.js var map = function() { emit( this.key, // key 1 // value ); } var reduce = function(key, values) { var count = 0; values.forEach(function(value) { count += value; }); return count; } var mongo = new Mon…