These codes are How to use Lucence.net
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using Lucene.Net.Analysis;using Lucene.Net.Analysis.Standard;using Lucene.Net.Documents;using Lucene.Net.Index;using Lucene.Net.QueryParsers;using Lucene.Net.Search;using Lucene.Net.Store;namespace Basic_Concepts{ c...
阅读全文
ASP.NET Session丢失问题原因及解决方案
摘要:正常操作情况下会有ASP.NET Session丢失的情况出现。因为程序是在不停的被操作,排除Session超时的可能。另外,Session超时时间被设定成60分钟,不会这么快就超时的。现在我就把原因和解决办法写出来。ASP.NET Session丢失原因:由于Asp.net程序是默认配置,所以Web.Config文件中关于Session的设定如下:< sessionState mode='InProc' stateConnectionString='tcpip=127.0.0.1:42424' sqlConnectionString='data
阅读全文
Asp.Net性能优化
摘要:(一).选择会话状态存储方式在Webconfig文件配置:<sessionState mode="???" stateConnectionString="tcpip=127.0.0.1:42424"sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"cookieless="false" timeout="20"/>[COLOR=red]Asp.net有三种方式存储会话状态信息:1. 存储在进程中: 属性m
阅读全文
posted @
2012-12-28 14:53
记性特差
阅读(122)
推荐(0)