Click here to Skip to main content
15,881,687 members
Home / Discussions / C#
   

C#

 
AnswerRe: help C# AND SQL Server Pin
Pete O'Hanlon14-Jul-14 3:42
mvePete O'Hanlon14-Jul-14 3:42 
AnswerRe: help C# AND SQL Server Pin
Dilan Shaminda14-Jul-14 7:07
professionalDilan Shaminda14-Jul-14 7:07 
QuestionRe: help C# AND SQL Server Pin
ZurdoDev14-Jul-14 8:55
professionalZurdoDev14-Jul-14 8:55 
AnswerRe: help C# AND SQL Server Pin
PIEBALDconsult14-Jul-14 9:16
mvePIEBALDconsult14-Jul-14 9:16 
AnswerRe: help C# AND SQL Server Pin
Dave Kreskowiak14-Jul-14 10:35
mveDave Kreskowiak14-Jul-14 10:35 
QuestionRegarding locking trick at the time of indexing data Lucene.net Pin
Tridip Bhattacharjee14-Jul-14 3:31
professionalTridip Bhattacharjee14-Jul-14 3:31 
AnswerRe: Regarding locking trick at the time of indexing data Lucene.net Pin
Pete O'Hanlon14-Jul-14 3:44
mvePete O'Hanlon14-Jul-14 3:44 
QuestionGuidance for indexing data by Lucene.net Pin
Tridip Bhattacharjee14-Jul-14 1:42
professionalTridip Bhattacharjee14-Jul-14 1:42 
i apollogized that here i am asking about Lucene.net in c# forum. i need some basic guidance about Lucene.net index technique before working with it.

below way people store or index their data by lucene.

C#
var doc = new Document();
// add lucene fields mapped to db fields
doc.Add(new Field("ID", oData.ID.ToString() , Field.Store.YES, Field.Index.NOT_ANALYZED));
doc.Add(new Field("Title", oData.Title, Field.Store.YES, Field.Index.ANALYZED));
doc.Add(new Field("Description", oData.Description, Field.Store.YES, Field.Index.ANALYZED));
doc.Add(new Field("Url", oData.Url, Field.Store.YES, Field.Index.ANALYZED));
// add entry to index
writer.AddDocument(doc);


i like to know what is the meaning of Field.Store.YES, Field.Index.ANALYZED & Field.Index.NOT_ANALYZED

if we say Field.Store.NO then what will happen and when people should writeField.Store.NO. please give a example that when we should not store? if anything is not store in lucene index file then we can pull that data or can not search data by that field.

what is the meaning of Field.Index.ANALYZED and Field.Index.NOT_ANALYZED ? what happen when we say ANALYZED or not ANALYZED ? explain with example what actually lucene does when it encounters ANALYZED or not ANALYZED and Field.Store.NO & Field.Store.YES ?
tbhattacharjee

AnswerRe: Guidance for indexing data by Lucene.net Pin
Pete O'Hanlon14-Jul-14 2:05
mvePete O'Hanlon14-Jul-14 2:05 
QuestionCould someone answer me this Pin
Member 1094467914-Jul-14 0:25
Member 1094467914-Jul-14 0:25 
AnswerRe: Could someone answer me this Pin
Pete O'Hanlon14-Jul-14 1:40
mvePete O'Hanlon14-Jul-14 1:40 
QuestionSend command To Printe Pin
Zeyad Jalil12-Jul-14 21:15
professionalZeyad Jalil12-Jul-14 21:15 
SuggestionRe: Send command To Printe Pin
Richard MacCutchan12-Jul-14 21:33
mveRichard MacCutchan12-Jul-14 21:33 
GeneralRe: Send command To Printe Pin
Zeyad Jalil12-Jul-14 22:09
professionalZeyad Jalil12-Jul-14 22:09 
GeneralRe: Send command To Printe Pin
Richard MacCutchan12-Jul-14 22:20
mveRichard MacCutchan12-Jul-14 22:20 
GeneralRe: Send command To Printe Pin
Dave Kreskowiak13-Jul-14 4:40
mveDave Kreskowiak13-Jul-14 4:40 
QuestionAdd other component in c# 2008 Pin
KaKoten12-Jul-14 15:30
KaKoten12-Jul-14 15:30 
AnswerRe: Add other component in c# 2008 Pin
Richard MacCutchan12-Jul-14 21:28
mveRichard MacCutchan12-Jul-14 21:28 
QuestionMutliple ResultSet from Stored Procedure using EF 5.0 Pin
meeram3912-Jul-14 12:57
professionalmeeram3912-Jul-14 12:57 
AnswerRe: Mutliple ResultSet from Stored Procedure using EF 5.0 Pin
Dave Kreskowiak13-Jul-14 4:42
mveDave Kreskowiak13-Jul-14 4:42 
GeneralRe: Mutliple ResultSet from Stored Procedure using EF 5.0 Pin
meeram3913-Jul-14 8:39
professionalmeeram3913-Jul-14 8:39 
QuestionTranslate method in Entity framework not found Pin
meeram3912-Jul-14 7:53
professionalmeeram3912-Jul-14 7:53 
AnswerRe: Translate method in Entity framework not found Pin
Pete O'Hanlon12-Jul-14 8:54
mvePete O'Hanlon12-Jul-14 8:54 
GeneralRe: Translate method in Entity framework not found Pin
meeram3912-Jul-14 9:52
professionalmeeram3912-Jul-14 9:52 
QuestionSelf Hosted WCF + REST + CORS Pin
evolcoder11-Jul-14 22:10
evolcoder11-Jul-14 22:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.