不過只有一句話 真的很貴! Orz,反而教育價比較有誠意一點ooxx
暫時先等國外的評論,再好好做決定
讓rtorrent跑得更順更安性兩個設定
min_peers = 40 max_peers = 52 max_uploads = 10 download_rate = 0 upload_rate = 10
Protocol encryption (PE), message stream encryption (MSE), or protocol header encrypt (PHE)[1] are related features of some peer-to-peer file-sharing clients, including BitTorrent clients. They attempt to enhance privacy and confidentiality. In addition, they attempt to make traffic harder to identify by third parties including internet service providers (ISPs).
# The example value allows incoming encrypted connections, starts unencrypted # outgoing connections but retries with encryption if they fail, preferring # plaintext to RC4 encryption after the encrypted handshake encryption = allow_incoming,try_outgoing,enable_retryrTorrent 推薦設定
rtorrent是目前常用torrent console client,利用Archlinux abs編譯達到優化rtorrent目的
sudo abs
cp -r /var/abs/community/rtorrent/ ~/abs
#./configure --prefix=/usr --disable-debug --with-xmlrpc-c || return 1 ./configure --prefix=/usr --disable-debug --with-posix-fallocate|| return 1
makepkg -s
sudo pacman -U rtorrent-0.8.6-2-i686.pkg.tar.gz Password: loading package data... checking dependencies... (1/1) checking for file conflicts [######################] 100% (1/1) upgrading rtorrent [######################] 100%
終算釋放新版了,似乎等了滿久!
3.5.0 版本中新增一些期待滿久的特性:
Phase 1 will focus on the API and the metadata infastructure needed to support fetch profiles. It will also provide implementation for using the join strategy.
個人所期待支援就是JPA2,JPA1在查詢支援及彈性不是這麼理想,不過這一次修正似乎滿多關於second-level cache問題
很少有機會接觸native method,平時都是拿java來實作webapp,在追縱一段程式發現為什麼程式只有宣告而沒有實作而且還用上native keyword,好奇心想要瞭解為什麼要用java native method?
The Java Native Interface (JNI) is a programming framework that allows Java code running in a Java Virtual Machine (JVM) to call and to be called[1] by native applications (programs specific to a hardware and operating system platform) and libraries written in other languages, such as C, C++ and assembly.
大致上會用到JNI應該有下面幾個原因:
利用native method可以在java 環境中呼叫外部資源,但是在很多地方我想應該是沒有這麼容易可以解決,不過算是又進一步瞭解java可以幫我們做些什麼事,有空寫一個Hello World來測試。