二月 01 2010

MySQL效能調整程式

Published by C.K. under Linux 48 Views

標籤:

此小工具能將MySQL調整為最佳化

下面為原作者說明

MySQL Performance Tuning Primer Script

This script takes information from "SHOW STATUS LIKE…" and "SHOW VARIABLES LIKE…"
to produce sane recomendations for tuning server variables.
It is compatable with all versions of MySQL 3.23 and higher (including 5.1).

Currently it handles recomendations for the following:

  • Slow Query Log
  • Max Connections
  • Worker Threads
  • Key Buffer
  • Query Cache
  • Sort Buffer
  • Joins
  • Temp Tables
  • Table (Open & Definition) Cache
  • Table Locking
  • Table Scans (read_buffer)
  • Innodb Status

Recent Changes

  • Correct awk display error which formats integers > 4294967296 in scientific notation.
  • - Was manfest in MEMORY USAGE section where total system RAM > 4GB.
  • Fixed rounding error where mysql will lose 4K from the join_buffer_size value.
  • - Other values may have the same issue but are not yet reported
  • Added support for FreeBSD and MacOS (thanks Sam and Geert)
  • Added support for Solaris
  • Changed how system memory is derived on Linux.
  • - Use /proc/meminfo vs free -b and avoid inclusion of swap space.
  • Include note warning of instability when key_buffer_size > 4GB in versions 5.0.51 and lower

下載:http://www.day32.com/MySQL/tuning-primer.sh

原始網站:http://www.day32.com/MySQL/

Bookmark and Share

目前沒有任何回應

一月 19 2010

Google Chart Tools API

Published by C.K. under 人工自動 112 Views

標籤:, ,

「Google 圖表 API」會傳回 PNG 格式的圖片來回應 URL。可產生的圖片類型包括線形圖、長條圖與圓餅圖。您可以針對每種圖片指定屬性,例如大小、色彩與標籤。

只要將 URL 嵌入 <img> 標籤之內,就能把「圖表 API」圖片加入網頁。瀏覽器顯示該網頁時,「圖表 API」便會在網頁內轉譯該圖片。

點此閱讀更多訊息 »

Bookmark and Share

目前沒有任何回應

十二月 13 2009

mysqli函式

Published by C.K. under PHP 99 Views

標籤:

mysqli 分為以下三個類別
mysqli:負責控制與mysql的連線,執行SQL查詢,執行select後會得到查詢結果
之mysql_result物件
mysqli_result:內含select的查詢結果
mysqli_stmt:用來定義執行參數化的SQL指令,需透過$mysqli->perpare建立mysql_stmt
點此閱讀更多訊息 »

Bookmark and Share

目前沒有任何回應

九月 05 2009

PDFmyURL.com 將網頁下載成PDF檔案

Published by C.K. under WebSite 233 Views

標籤:

PDFmyURL

http://pdfmyurl.com/

此網站可以將某一個網站存成PDF檔案(Flash好像存不下來)

或者可以砍入網頁裡面做成Link

<a href="http://pdfmyurl.com?url=www.opentracker.net">下載此頁面為PDF檔</a>

Bookmark and Share

目前沒有任何回應

八月 28 2009

AdSense廣告在Discuz!論壇展示問題及解決辦法

Published by C.K. under 喃喃自語 1,901 Views

標籤:,

最近我們收到一些Discuz!論壇發佈商反饋廣告無法展示,經過和Discuz!團隊以及AdSense產品部門的溝通,我們確定以下解決方案可以解決廣告展示問題。如果您的網站是Discuz!論壇並遇到了同樣的廣告展示問題,請按如下步驟進行操作:

請進入Discuz!安裝目錄,在include\js目錄下的common.js文件內刪除以下語句:

Array.prototype.push = function(value) {
this[this.length] = value;
return this.length;
}

或者將此文件裡的push全數修改成其他字例如"push_se"
文件中共有五處,五處修改必須一致

修改完畢後更新緩存(後台>工具>更新緩存)後即恢復正常

以上適用於Discuz! 7.0 提醒您,修改前請備份檔案

如果調整以後,您的Discuz!論壇依然不能正常展示AdSense廣告,請透過AdSense支援中心與我們聯繫。

對於這件事給您帶來的不便,我們深感抱歉,感謝您的理解。

AdSense 支援小組

Bookmark and Share

目前沒有任何回應