You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@lucene.apache.org by Rosen Marinov <ro...@sirma.bg> on 2001/04/16 18:24:58 UTC

How to Delete documet with Term wich text is a number or string+number?

i have one question

I want to delete a document from index.

My index contains lucene Documents with 2 fields
for exammlpe"
 
"ID" "12345"
"CONTENT" "The quick brown ...."

now i wanrt to delete document with id 12345

create a Term  --> t = new Term("ID","12345");
IndexReader.delete(t) - doesn't delete the document

if ID is a string from letters it is ok: 
for example "ID" "abcd"
now with Term("ID","abcd");
everything is OK.

how can i delete it in my case ID is a number string?

10x