爱骂的你们就对着空门骂吧
我辛辛苦苦写文章也不是为了给你们那些没素质的人看的,你们牛你们怎么不写,wiki 上你们提交了几篇文献
我不过是没写完留空居然三番五次的被网络流氓骂,我图什么啊
blog 关了完事,去别的地方了玩了,爱骂的自己想办法吧
你们一辈子都只会拾人牙慧,还真当自己是大家了,骂家
爱骂的你们就对着空门骂吧
我辛辛苦苦写文章也不是为了给你们那些没素质的人看的,你们牛你们怎么不写,wiki 上你们提交了几篇文献
我不过是没写完留空居然三番五次的被网络流氓骂,我图什么啊
blog 关了完事,去别的地方了玩了,爱骂的自己想办法吧
你们一辈子都只会拾人牙慧,还真当自己是大家了,骂家
* Released on 22 November 2007.
* Some WordList and PropSet functionality moved From Scintilla to SciTE. Projects that link to Scintilla's code for these classes may need to copy code From SciTE.
* Borland C++ can no longer build Scintilla.
* Invalid bytes in UTF-8 mode are displayed as hex blobs. This also prevents crashes due to passing invalid UTF-8 to platform calls.
* Indentation guides enhanced to be visible on completely empty lines when possible.
* The horizontal scroll bar may grow to match the widest line displayed.
* Allow autocomplete popups to appear outside client rectangle in some cases.
* When line state changed, SC_MOD_CHANGELINESTATE modification notification sent and margin redrawn.
* SciTE scripts can access the menu command values IDM_*.
* SciTE's statement.end property has been implemented again.
* SciTE shows paths and matches in different styles for Find In Files.
* Incremental search in SciTE for Windows is modeless to make it easier to exit.
* Folding performance improved.
* SciTE for GTK+ now includes a Browse button in the Find In Files dialog.
* On Windows versions that support Unicode well, Scintilla is a wide character window which allows input for some less common languages like Armenian, Devanagari, Tamil, and Georgian. To fully benefit, applications should use wide character calls.
* Lua function names are exported From SciTE to allow some extension libraries to work.
* Lexers added for Abaqus, Ansys APDL, Asymptote, and R.
* SCI_DELWORDRIGHTEND added for closer compatibility with GTK+ entry widget.
* The styling buffer may now use all 8 bits in each byte for lexical states with 0 bits for indicators.
* Multiple characters may be set for SciTE's calltip..parameters.start property.
* Bash lexer handles octal literals.
* C++/JavaScript lexer recognises regex literals in more situations.
* Haskell lexer fixed for quoted strings.
* HTML/XML lexer does not notice XML indicator if there is non-whitespace between the "" and "XML". ASP problem fixed Where is used inside a comment. * Error messages From Lua 5.1 are recognised. * Folding implemented for Metapost. * Perl lexer enhanced for handling minus-prefixed barewords, underscores in numeric literals and vector/version strings, ^D and ^Z similar to __END__, subroutine prototypes as a new lexical class, formats and format blocks as new lexical classes, and '/' suffixed keywords and barewords. * Python lexer styles all of a decorator in the decorator style rather than just the name. * YAML lexer styles colons as operators. * Fixed SciTE bug Where undo would group together multiple separate modifications. * Bug fixed Where setting background colour of calltip failed. * SciTE allows wildcard suffixes for file pattern based properties. * SciTE on GTK+ bug fixed Where user not prompted to save untitled buffer. * SciTE bug fixed Where property values From one file were not seen by lower priority files. * Bug fixed when showing selection with a foreground colour change which highlighted an incorrect range in some positions. * Cut now invokes SCN_MODIFYATTEMPTRO notification. * Bug fixed Where caret not shown at beginning of wrapped lines. Caret made visible in some cases after wrapping and scroll bar updated after wrapping. * Modern indicators now work on wrapped lines. * Some crashes fixed for 64-bit GTK+. * On GTK+ clipboard features improved for VMWare tools copy and paste. SciTE exports the clipboard more consistently on shut down.
http://scintilla.sourceforge.net/SciTEDownload.html
http://index.baidu.com/main/word.php?word=mp3%2C+%CA%D6%BB%FA
在一年中 mp3 和手机的关注度近似成正比,比值为 1
下面是火影与动画+漫画的关系,足见其火爆
http://index.baidu.com/main/word.php?word=%BB%F0%D3%B0%2C+%C2%FE%BB%AD%2B%B6%AF%BB%AD
文件头:
Content-Type:text/html; charset=UTF-8
Content-Transfer-Encoding: base64
主题:=?编码格式?B?base64(主题内容)?=
内容:base64(内容)
Using OpenCms's Database connection pool
From OpenCms Wiki
Jump to: navigation, search
OpenCms delivers a mechanism to include additional databases, that can be accessed From within OpenCms via the Opencms-SqlManager, the database connection pool. The pool contains all the information to access the database and an identifier, that is used in your jsp's to access the the database.
[edit]
Configuration of the database connection pool
Instead of setting up and configuring your own database connection pool, you can use OpenCms's version of the database connection pool management. After succesfully setting up OpenCms, the pool already contains the connection, it uses to store and retrieve itself in the configured database.
First, you must add your database pool to the config file, located: %jsp-container folder%\webapps\opencms\WEB-INF\config\opencms.properties.
Copy over the default pool, and modify it for your database pool, paying special attention to the sections: "Declaration of database pools", "Configuration of the {poolname} database pool", and "Configuration for statement pooling".
Your changes will look something like this:
#
# Declaration of database pools
#################################################################################
db.pools=default,yourdb
#
# Configuration of the default database pool
#################################################################################
...
#
# Configuration of the yourdb database pool
#################################################################################
# name of the JDBC driver - this one is for MsSQL
db.pool.yourdb.jdbcDriver=net.sourceforge.jtds.jdbc.Driver
# URL of the JDBC driver
db.pool.yourdb.jdbcUrl=jdbc:jtds:sqlserver://yourSQLserver.com/yourDB
# optional parameters for the URL of the JDBC driver
# db.pool.yourdb.jdbcUrl.params=?characterEncoding\=UTF-8
# user name to connect to the database
db.pool.yourdb.user=youruser
# password to connect to the database
db.pool.yourdb.password=yourpassword
# the URL to make the JDBC DriverManager return connections From the DBCP pool
db.pool.yourdb.poolUrl=opencms:yourdb
# the maximum number of objects that can be borrowed From the pool
db.pool.yourdb.maxActive=25
# the maximum amount of time before throwing an exception when the pool is exhausted
db.pool.yourdb.maxWait=2000
# the minimum number of objects that will kept connected
db.pool.yourdb.minIdle=3
# the maximum number of objects that can sit idled in the pool
db.pool.yourdb.maxIdle=10
# action to take when the pool is exhausted {grow|block|fail}
db.pool.yourdb.whenExhaustedAction=block
# connections will be validated before they are borrowed From the pool
db.pool.yourdb.testOnBorrow=true
# connections will be validated by evictor thread
db.pool.yourdb.testWhileIdle=false
# number of milliseconds to sleep between runs of the evictor thread
# -1 means no idle connection evictor thread will be run
db.pool.yourdb.timeBetweenEvictionRuns=-1
# number of connections tested in a run of the evictor thread
db.pool.yourdb.numTestsPerEvictionRun=3
# minimum amount of time in milliseconds a connection may be idle in the pool before it is eligable for eviction
db.pool.yourdb.minEvictableIdleTime=1800000
# the query to validate connections
# MSQL version (also MS SQL): SELECT 1
# Oracle version : SELECT 'validationQuery' From DUAL
db.pool.yourdb.testQuery=SELECT 1
Web 项目的表应该散,太大影响效率
尽量减少数据库访问次数,并发 300 就能 down 掉两个服务器
失败超过 30% 就认为系统失败(压力测试)
广告不能超过版面的 1/8
由于生理及心理因素,人类的注意力最多集中 3 秒