$value ) if( $value['eid'] == $eid ) return $value; return null; } function RecommendedEntry_updateIndexFile( $eid_updated, $eid, $direction ) { $filename = '/var/www/VirtualDomain/kenji00.com/blog/recommend_data'; is_dir( $filename ) || mkdir( $filename ); $filename .= '/'. substr( $eid_updated, -1 ); is_dir( $filename ) || mkdir( $filename ); $filename .= sprintf( '/%d.txt', $eid_updated); file_exists( $filename ) || touch( $filename ); $fp = @fopen( $filename, 'r+' ); if( $fp ) { if( flock( $fp, LOCK_EX | LOCK_NB )) { $ret = ''; $not_found = 1; while( !feof( $fp ) && ( $buf = fgets( $fp ))) { list( $_eid, $_n0, $_n1 ) = split( "[\t\r\n]", $buf ); if( $eid == $_eid ) { $not_found = 0; $direction ? $_n1++ : $_n0++; } $ret .= sprintf( "%d\t%d\t%d\n", $_eid, $_n0, $_n1 ); } if( $not_found ) $ret .= sprintf( "%d\t%d\t%d\n", $eid, 1 - $direction, $direction); rewind( $fp ); fwrite( $fp, $ret, strlen( $ret )); } fclose( $fp ); } } function RecommendedEntry_incoming() { $eid_prev = $_COOKIE['mtrcmnd_eid']; if( isset( $eid_prev )) { if( $eid_prev != 103 && RecommendedEntry_getEntryData( $eid_prev )) { RecommendedEntry_updateIndexFile( 103, $eid_prev, 0 /*incoming_from*/ ); RecommendedEntry_updateIndexFile( $eid_prev, 103, 1 /*outgoing_to*/ ); } } else { RecommendedEntry_updateIndexFile( 103, 103, 0 /*incoming_from*/ ); } } RecommendedEntry_incoming(); function RecommendedEntry_outgoing() { setcookie( 'mtrcmnd_eid', 103, time() + 2592000, '/' ); } RecommendedEntry_outgoing(); function RecommendedEntry_initialize( $mode = 0 ) { global $RecommendedEntry_table; $RecommendedEntry_table = array(); $filename = '/var/www/VirtualDomain/kenji00.com/blog/recommend_data/'. substr( '103', -1 ). '/103.txt'; $fp = @fopen( $filename, 'r' ); if( $fp ) { if( flock( $fp, LOCK_SH | LOCK_NB )) { while( !feof( $fp ) && ( $buf = fgets( $fp ))) { list( $_eid, $_n0, $_n1 ) = split( "[\t\r\n]", $buf ); if( 103 == $_eid ) continue; else if( $mode == 1 ) $RecommendedEntry_table{$_eid} = $_n0; else if( $mode == 2 ) $RecommendedEntry_table{$_eid} = $_n1; else $RecommendedEntry_table{$_eid} = $_n0 + $_n1; } arsort( $RecommendedEntry_table, SORT_NUMERIC ); } fclose( $fp ); } } function RecommendedEntry_GetEntry( $_index ) { global $RecommendedEntry_table; foreach( $RecommendedEntry_table as $eid => $count ) { if( --$_index ) continue; $entry = RecommendedEntry_getEntryData( $eid ); if( $entry ) $entry['count'] = $count; return $entry; } } ?> Movabletype4 個人ライセンス(無償) - 寝不足にて候(仮)
Aug
11
2007

Movabletype4 個人ライセンス(無償)

というわけで、MT4正式版リリースおめでとうございます。
なんか、個人ライセンス版の入手先が少し分かりにくいですが.....サイトを見る限り、Sixapartさんとしてもビジネスユースメインであることを明確に謳っておられますし。個人さんには今後、GNU版もあるでよぉ。ということでしょう。

で、今、Change Logを読んでますが、

53902: Integration of Rebuild Queue
FEATURE: The Rebuild Queue plugin has been fully integrated into the application. Rebuild Queue provides MT with a scalable asynchronous background publishing system. It allows any and all pages within a blog to be published by a set of dedicated workers that can be distributed across a number of different machines. Furthermore, the Rebuild Queue plugin has been rearchitected to utilize "The Schwartz" - an open source job and event management system create by Six Apart and used to power Vox, LiveJournal and TypePad.

ということで、無事Rebuild Queueも搭載されたですね。
別サーバで、エントリ数11万Overという(識者からは侮蔑の対象となるであろう)お小遣い稼ぎ用Blogが稼動しているのですが、コレの再構築が簡単になると良いなぁ..と。
今更WordPressというのも面倒ですし。

さて、アップグレードすっか。

このエントリを読んだ人はこんなんも読んでいます

トラックバック(0)

トラックバックURL: http://blog.kenji00.com/MT/mt-tb.cgi/102

コメントする

過去のエントリ(一覧)

Powered by Movable Type 4.261
Creative Commons License
このブログはクリエイティブ・コモンズでライセンスされています。