On 2/27/07, Jack L <[EMAIL PROTECTED]> wrote:
I am indexing some pages whose urls are unique. I wanted to use url as the unique key but got a problem that "=" is not allowed in unique keys.
That doesn't sound right. unique keys can be anything (but they need to be indexed to a single token... to text analysis). The fieldType for the unique key field that most people use is "string", which allows anything as it's value. -Yonik