Sep 30, 2008 in Eclipse
Notes on setting profiling and performance monitoring in Eclipse with TPTP - Test and Performance Tools Platform.
https://www6.software.ibm.com/developerworks/education/os-ecl-tptp/os-ecl-tptp-a4.pdf
No Comments »
Sep 26, 2008 in Windows
From http://www.computerperformance.co.uk/vista/vista_administrator_activate.htm
- Logon to Vista using your usual account.
- Launch the cmd prompt - Make sure you select, ‘Run as administrator’
- Net user administrator p@ssw0rD
- Net user administrator /active:yes
- Switch User, or logoff
- Logon as Administrator Password p@ssw0rD
No Comments »
Sep 07, 2008 in Books, Java, lucene

Lucene in Action
ERIK HATCHER
OTIS GOSPODNETIC
MANNING
Greenwich
Ch. 1 - Introduction
- Lucene is a high performance, scalable Information Retrieval (IR) library.
- Lucene’s creator is Doug Cutting.
- Creating an index - see ‘Indexer.java’ (in ‘Files’, top right tabs)
- Indexing API:
– IndexWriter
– Directory (RAMDirectory)
– Analyzer
– Document
– Field
- Searching an index - see ‘Searcher.java’ (in ‘Files’, top right tabs)
- Searching API:
– IndexSearcher
– Term
– Query
– TermQuery
– Hits
Ch. 2 - Indexing
No Comments »