免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: plumlee
打印 上一主题 下一主题

[Lotus] Domino系统管理员的12个小贴士 (易读英文版),不是那个12个忠告版 [复制链接]

论坛徽章:
3
2015年迎新春徽章
日期:2015-03-03 17:23:07综合交流区版块每日发帖之星
日期:2015-08-19 06:20:00综合交流区版块每日发帖之星
日期:2015-09-15 06:20:00
11 [报告]
发表于 2006-10-14 00:29 |只看该作者
Can you have an Apache server handle Domino URLs on a different box?


You can use something called "reverse proxy" to map the Domino URLs to an internal machine:

http://www.apacheweek.com/features/reverseproxies

论坛徽章:
3
2015年迎新春徽章
日期:2015-03-03 17:23:07综合交流区版块每日发帖之星
日期:2015-08-19 06:20:00综合交流区版块每日发帖之星
日期:2015-09-15 06:20:00
12 [报告]
发表于 2006-10-14 00:30 |只看该作者
Can you find out how long views take to rebuild?


Here is some general logging info you can enable in your notes.ini. The first entry will log the start of each view rebuild by the updall task so you can calculate the time it took a view by comparing two messages:

; Show some log entries when the updall/update runs
LOG_UPDATE=2

; show the number of transactions
SHOW_PERFORMANCE=1

; Show logfile entries when semaphore waits time out
DEBUG_SHOW_TIMEOUT=1
; Show the thread ids
debug_threadid=1

; And show a semaphore wait log entry after ten seconds waiting.
debug_capture_timeout=10
debug_sem_timeout=10000


Applies to Notes Versions: 6; 6.5; 7
Last Modified: July 12, 2006

论坛徽章:
3
2015年迎新春徽章
日期:2015-03-03 17:23:07综合交流区版块每日发帖之星
日期:2015-08-19 06:20:00综合交流区版块每日发帖之星
日期:2015-09-15 06:20:00
13 [报告]
发表于 2006-10-14 00:31 |只看该作者
How do you enable folder references for a database?


You have to do this programmatically and via the convert task.
Programmatically, you have to enable the folder references property on the database. E.g.
Dim session as NotesSession
Dim db As NotesDatabase
Set db = session.CurrentDatabase
db.FolderReferences = True

This enables Notes to track which folders documents are put into after you enable this flag. However, all the foldered documents before setting this flag will be missing their folder references. To determine which folders documents are in, you have to run this on the server console:
load convert -m <database>   
(R6 or R7)
or
load convert -e <database>   
(R5)


Applies to Notes Versions: 5; 6; 6.5; 7
Last Modified: September 14, 2006
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP