User Mat Mannion - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T13:05:53Zhttp://stackoverflow.com/feeds/user/6282http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1238629/is-it-possible-to-see-the-object-graph-for-garbage-collection/1238747#12387472Answer by Mat Mannion for Is it possible to 'see' the object graph for garbage collection?Mat Mannion2009-08-06T13:07:33Z2009-08-06T13:07:33Z<p>On a really basic level, you can use the commands jhat and jmap to read a heap file from a running Java process and then process it - it starts a small web server on a local port. It's not exactly easy to read, but you don't have to buy a profiler to use it.</p>
http://stackoverflow.com/questions/1232793/javascript-set-img-src/1232807#12328070Answer by Mat Mannion for Javascript set img srcMat Mannion2009-08-05T12:03:40Z2009-08-05T12:03:40Z<p>You need to set</p>
<pre><code>document["pic1"].src = searchPic.src;
</code></pre>
<p>The searchPic itself is your Image(), you need to read the src that you set.</p>
http://stackoverflow.com/questions/1227310/question-regarding-lucene-scoring/1227889#12278890Answer by Mat Mannion for Question regarding Lucene scoringMat Mannion2009-08-04T14:37:06Z2009-08-04T14:37:06Z<p>If you use lucli from the command line (download the latest Lucene source and it's in the contrib directory), you can use the "explain" command to get Lucene to explain why it has scored it so highly.</p>
<p>It'll come out with something like this:</p>
<p>---------------- 2 score:0.6089077---------------------</p>
<p>(blah blah your document)</p>
<pre><code>Explanation:4.260467 = (MATCH) sum of:
0.59024054 = (MATCH) weight(description:warwick in 276780), product of:
0.05595057 = queryWeight(description:warwick), product of:
5.2746606 = idf(docFreq=13531, numDocs=843621)
0.010607426 = queryNorm
10.549321 = (MATCH) fieldWeight(description:warwick in 276780), product of:
1.0 = tf(termFreq(description:warwick)=1)
5.2746606 = idf(docFreq=13531, numDocs=843621)
2.0 = fieldNorm(field=description, doc=276780)
0.832554 = (MATCH) weight(keywords:warwick in 276780), product of:
0.066450186 = queryWeight(keywords:warwick), product of:
6.264497 = idf(docFreq=5028, numDocs=843621)
0.010607426 = queryNorm
12.528994 = (MATCH) fieldWeight(keywords:warwick in 276780), product of:
1.0 = tf(termFreq(keywords:warwick)=1)
6.264497 = idf(docFreq=5028, numDocs=843621)
2.0 = fieldNorm(field=keywords, doc=276780)
0.19180772 = (MATCH) weight(url:warwick in 276780), product of:
0.048220757 = queryWeight(url:warwick), product of:
4.5459433 = idf(docFreq=28043, numDocs=843621)
0.010607426 = queryNorm
3.9777002 = (MATCH) fieldWeight(url:warwick in 276780), product of:
1.0 = tf(termFreq(url:warwick)=1)
4.5459433 = idf(docFreq=28043, numDocs=843621)
0.875 = fieldNorm(field=url, doc=276780)
0.023709858 = (MATCH) weight(content:warwick in 276780), product of:
0.03373665 = queryWeight(content:warwick), product of:
3.1804748 = idf(docFreq=109863, numDocs=843621)
0.010607426 = queryNorm
0.7027923 = (MATCH) fieldWeight(content:warwick in 276780), product of:
1.4142135 = tf(termFreq(content:warwick)=2)
3.1804748 = idf(docFreq=109863, numDocs=843621)
0.15625 = fieldNorm(field=content, doc=276780)
0.46163678 = (MATCH) weight(siteDescription:warwick in 276780), product of:
0.0494812 = queryWeight(siteDescription:warwick), product of:
4.6647696 = idf(docFreq=24901, numDocs=843621)
0.010607426 = queryNorm
9.329539 = (MATCH) fieldWeight(siteDescription:warwick in 276780), product of:
1.0 = tf(termFreq(siteDescription:warwick)=1)
4.6647696 = idf(docFreq=24901, numDocs=843621)
2.0 = fieldNorm(field=siteDescription, doc=276780)
0.96127754 = (MATCH) weight(siteUrl:warwick in 276780), product of:
0.10097861 = queryWeight(siteUrl:warwick), product of:
9.519615 = idf(docFreq=193, numDocs=843621)
0.010607426 = queryNorm
9.519615 = (MATCH) fieldWeight(siteUrl:warwick in 276780), product of:
1.0 = tf(termFreq(siteUrl:warwick)=1)
9.519615 = idf(docFreq=193, numDocs=843621)
1.0 = fieldNorm(field=siteUrl, doc=276780)
0.62917286 = (MATCH) weight(title:warwick in 276780), product of:
0.05776636 = queryWeight(title:warwick), product of:
5.4458413 = idf(docFreq=11402, numDocs=843621)
0.010607426 = queryNorm
10.891683 = (MATCH) fieldWeight(title:warwick in 276780), product of:
1.0 = tf(termFreq(title:warwick)=1)
5.4458413 = idf(docFreq=11402, numDocs=843621)
2.0 = fieldNorm(field=title, doc=276780)
0.57006776 = (MATCH) weight(second_title:warwick in 276780), product of:
0.05498614 = queryWeight(second_title:warwick), product of:
5.18374 = idf(docFreq=14819, numDocs=843621)
0.010607426 = queryNorm
10.36748 = (MATCH) fieldWeight(second_title:warwick in 276780), product of:
1.0 = tf(termFreq(second_title:warwick)=1)
5.18374 = idf(docFreq=14819, numDocs=843621)
2.0 = fieldNorm(field=second_title, doc=276780)
</code></pre>
<p>(Sorry, I only had a big index to get an example off, not a simple one!)</p>
http://stackoverflow.com/questions/1225125/telling-when-an-iframe-is-on-a-new-url/1226935#12269351Answer by Mat Mannion for Telling when an iframe is on a new URLMat Mannion2009-08-04T11:25:15Z2009-08-04T11:25:15Z<p>You could add an onload event to the iframe and then monitor that - it'll get thrown whenever the frame finishes loading (though, of course, it could be the same URL again...)</p>
http://stackoverflow.com/questions/1226874/java-lang-noclassdeffounderror-com-hp-hpl-jena-shared-baduriexception-on-running/1226887#12268870Answer by Mat Mannion for java.lang.NoClassDefFoundError: com/hp/hpl/jena/shared/BadURIException on running servletMat Mannion2009-08-04T11:10:08Z2009-08-04T11:10:08Z<p>It looks like you're missing the jar for Jena(?) which defines the BadURIException class. Is that jar included in your WEB-INF/lib directory as well? Have you tried looking at the unpacked war file in Winstone and checking if the relevant jars are all there?</p>
http://stackoverflow.com/questions/82151/is-there-a-fast-accurate-highlighter-for-lucene3Is there a fast, accurate Highlighter for Lucene?Mat Mannion2008-09-17T11:24:33Z2009-03-31T08:29:28Z
<p>I've been using the (Java) <a href="http://lucene.apache.org/java/2%5F4%5F1/lucene-sandbox/index.html#Term%20Highlighter" rel="nofollow">Highlighter for Lucene</a> (in the Sandbox package) for some time. However, this isn't really very accurate when it comes to matching the correct terms in search results - it works well for simple queries, for example searching for two separate words will highlight both code fragments in the results.</p>
<p>However, it doesn't act well with more complicated queries. In the simplest case, phrase queries such as "Stack Overflow" will match all occurrences of Stack or Overflow in the highlighting, which gives the impression to the user that it isn't working very well.</p>
<p>I tried applying the fix <a href="http://www.gossamer-threads.com/lists/lucene/java-user/15528" rel="nofollow">here</a> but that came with a lot of performance caveats, and at the end of the day was just plain unusable. The performance is especially an issue on wildcard queries. This is due to the way that the highlighting works; instead of just working on the querystring and the text it parses it as Lucene would and then looks for all the matches that Lucene has made; unfortunately this means that for certain wildcard queries it can be looking for matches to 2000+ clauses on large documents, and it's simply not fast enough.</p>
<p>Is there any faster implementation of an accurate highlighter?</p>
http://stackoverflow.com/questions/120180/how-to-do-query-auto-completion-suggestions-in-lucene/121456#1214564Answer by Mat Mannion for How to do query auto-completion/suggestions in Lucene?Mat Mannion2008-09-23T14:41:51Z2009-02-13T09:19:36Z<p>Based on @Alexandre Victoor's answer, I wrote a little class based on the Lucene Spellchecker in the contrib package (and using the LuceneDictionary included in it) that does exactly what I want.</p>
<p>This allows re-indexing from a single source index with a single field, and provides suggestions for terms. Results are sorted by the number of matching documents with that term in the original index, so more popular terms appear first. Seems to work pretty well :)</p>
<pre><code>import java.io.IOException;
import java.io.Reader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.analysis.ISOLatin1AccentFilter;
import org.apache.lucene.analysis.LowerCaseFilter;
import org.apache.lucene.analysis.StopFilter;
import org.apache.lucene.analysis.TokenStream;
import org.apache.lucene.analysis.ngram.EdgeNGramTokenFilter;
import org.apache.lucene.analysis.ngram.EdgeNGramTokenFilter.Side;
import org.apache.lucene.analysis.standard.StandardFilter;
import org.apache.lucene.analysis.standard.StandardTokenizer;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
import org.apache.lucene.index.CorruptIndexException;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.IndexWriter;
import org.apache.lucene.index.Term;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.ScoreDoc;
import org.apache.lucene.search.Sort;
import org.apache.lucene.search.TermQuery;
import org.apache.lucene.search.TopDocs;
import org.apache.lucene.search.spell.LuceneDictionary;
import org.apache.lucene.store.Directory;
import org.apache.lucene.store.FSDirectory;
/**
* Search term auto-completer, works for single terms (so use on the last term
* of the query).
* <p>
* Returns more popular terms first.
*
* @author Mat Mannion, M.Mannion@warwick.ac.uk
*/
public final class Autocompleter {
private static final String GRAMMED_WORDS_FIELD = "words";
private static final String SOURCE_WORD_FIELD = "sourceWord";
private static final String COUNT_FIELD = "count";
private static final String[] ENGLISH_STOP_WORDS = {
"a", "an", "and", "are", "as", "at", "be", "but", "by",
"for", "i", "if", "in", "into", "is",
"no", "not", "of", "on", "or", "s", "such",
"t", "that", "the", "their", "then", "there", "these",
"they", "this", "to", "was", "will", "with"
};
private final Directory autoCompleteDirectory;
private IndexReader autoCompleteReader;
private IndexSearcher autoCompleteSearcher;
public Autocompleter(String autoCompleteDir) throws IOException {
this.autoCompleteDirectory = FSDirectory.getDirectory(autoCompleteDir,
null);
reOpenReader();
}
public List<String> suggestTermsFor(String term) throws IOException {
// get the top 5 terms for query
Query query = new TermQuery(new Term(GRAMMED_WORDS_FIELD, term));
Sort sort = new Sort(COUNT_FIELD, true);
TopDocs docs = autoCompleteSearcher.search(query, null, 5, sort);
List<String> suggestions = new ArrayList<String>();
for (ScoreDoc doc : docs.scoreDocs) {
suggestions.add(autoCompleteReader.document(doc.doc).get(
SOURCE_WORD_FIELD));
}
return suggestions;
}
@SuppressWarnings("unchecked")
public void reIndex(Directory sourceDirectory, String fieldToAutocomplete)
throws CorruptIndexException, IOException {
// build a dictionary (from the spell package)
IndexReader sourceReader = IndexReader.open(sourceDirectory);
LuceneDictionary dict = new LuceneDictionary(sourceReader,
fieldToAutocomplete);
// code from
// org.apache.lucene.search.spell.SpellChecker.indexDictionary(
// Dictionary)
IndexReader.unlock(autoCompleteDirectory);
// use a custom analyzer so we can do EdgeNGramFiltering
IndexWriter writer = new IndexWriter(autoCompleteDirectory,
new Analyzer() {
public TokenStream tokenStream(String fieldName,
Reader reader) {
TokenStream result = new StandardTokenizer(reader);
result = new StandardFilter(result);
result = new LowerCaseFilter(result);
result = new ISOLatin1AccentFilter(result);
result = new StopFilter(result,
ENGLISH_STOP_WORDS);
result = new EdgeNGramTokenFilter(
result, Side.FRONT,1, 20);
return result;
}
}, true);
writer.setMergeFactor(300);
writer.setMaxBufferedDocs(150);
// go through every word, storing the original word (incl. n-grams)
// and the number of times it occurs
Map<String, Integer> wordsMap = new HashMap<String, Integer>();
Iterator<String> iter = (Iterator<String>) dict.getWordsIterator();
while (iter.hasNext()) {
String word = iter.next();
int len = word.length();
if (len < 3) {
continue; // too short we bail but "too long" is fine...
}
if (wordsMap.containsKey(word)) {
throw new IllegalStateException(
"This should never happen in Lucene 2.3.2");
// wordsMap.put(word, wordsMap.get(word) + 1);
} else {
// use the number of documents this word appears in
wordsMap.put(word, sourceReader.docFreq(new Term(
fieldToAutocomplete, word)));
}
}
for (String word : wordsMap.keySet()) {
// ok index the word
Document doc = new Document();
doc.add(new Field(SOURCE_WORD_FIELD, word, Field.Store.YES,
Field.Index.UN_TOKENIZED)); // orig term
doc.add(new Field(GRAMMED_WORDS_FIELD, word, Field.Store.YES,
Field.Index.TOKENIZED)); // grammed
doc.add(new Field(COUNT_FIELD,
Integer.toString(wordsMap.get(word)), Field.Store.NO,
Field.Index.UN_TOKENIZED)); // count
writer.addDocument(doc);
}
sourceReader.close();
// close writer
writer.optimize();
writer.close();
// re-open our reader
reOpenReader();
}
private void reOpenReader() throws CorruptIndexException, IOException {
if (autoCompleteReader == null) {
autoCompleteReader = IndexReader.open(autoCompleteDirectory);
} else {
autoCompleteReader.reopen();
}
autoCompleteSearcher = new IndexSearcher(autoCompleteReader);
}
public static void main(String[] args) throws Exception {
Autocompleter autocomplete = new Autocompleter("/index/autocomplete");
// run this to re-index from the current index, shouldn't need to do
// this very often
// autocomplete.reIndex(FSDirectory.getDirectory("/index/live", null),
// "content");
String term = "steve";
System.out.println(autocomplete.suggestTermsFor(term));
// prints [steve, steven, stevens, stevenson, stevenage]
}
}
</code></pre>
http://stackoverflow.com/questions/120180/how-to-do-query-auto-completion-suggestions-in-lucene5How to do query auto-completion/suggestions in Lucene?Mat Mannion2008-09-23T10:12:10Z2009-02-13T09:19:36Z
<p>I'm looking for a way to do query auto-completion/suggestions in Lucene. I've Googled around a bit and played around a bit, but all of the examples I've seen seem to be setting up filters in Solr. We don't use Solr and aren't planning to move to using Solr in the near future, and Solr is obviously just wrapping around Lucene anyway, so I imagine there must be a way to do it!</p>
<p>I've looked into using EdgeNGramFilter, and I realise that I'd have to run the filter on the index fields and get the tokens out and then compare them against the inputted Query... I'm just struggling to make the connection between the two into a bit of code, so help is much appreciated!</p>
<p>To be clear on what I'm looking for (I realised I wasn't being overly clear, sorry) - I'm looking for a solution where when searching for a term, it'd return a list of suggested queries. When typing 'inter' into the search field, it'll come back with a list of suggested queries, such as 'internet', 'international', etc.</p>
http://stackoverflow.com/questions/119994/should-an-index-be-optimised-after-incremental-indexes-in-lucene2Should an index be optimised after incremental indexes in Lucene?Mat Mannion2008-09-23T09:11:16Z2008-12-24T00:57:21Z
<p>We run full re-indexes every 7 days (i.e. creating the index from scratch) on our Lucene index and incremental indexes every 2 hours or so. Our index has around 700,000 documents and a full index takes around 17 hours (which isn't a problem).</p>
<p>When we do incremental indexes, we only index content that has changed in the past two hours, so it takes much less time - around half an hour. However, we've noticed that a lot of this time (maybe 10 minutes) is spent running the IndexWriter.optimize() method.</p>
<p>The <a href="http://wiki.apache.org/lucene-java/LuceneFAQ#head-fd848c31f4dc7b91727be6f40a7f5fbe2c66cfb8" rel="nofollow">LuceneFAQ</a> mentions that:</p>
<blockquote>
<p>The IndexWriter class supports an optimize() method that compacts the index database and speeds up queries. You may want to use this method after performing a complete indexing of your document set or after incremental updates of the index. If your incremental update adds documents frequently, you want to perform the optimization only once in a while to avoid the extra overhead of the optimization.</p>
</blockquote>
<p>...but this doesn't seem to give any definition for what "frequently" means. Optimizing is CPU intensive and VERY IO-intensive, so we'd rather not be doing it if we can get away with it. How much is the hit of running queries on an un-optimized index (I'm thinking especially in terms of query performance after a full re-index compared to after 20 incremental indexes where, say, 50,000 documents have changed)? Should we be optimising after every incremental index or is the performance hit not worth it?</p>
http://stackoverflow.com/questions/243409/setting-fetchmode-in-native-hibernate/243488#2434881Answer by Mat Mannion for Setting FetchMode in native HibernateMat Mannion2008-10-28T14:15:30Z2008-10-28T14:15:30Z<p>You could try something like this: (code off the top of my head)</p>
<pre><code>Criteria crit = session.createCriteria(MyClass.class);
crit.add(Restrictions.eq("id", myClassId));
crit.setFetchMode("myProperty", FetchMode.EAGER);
MyClass myThingy = (MyClass)crit.uniqueResult();
</code></pre>
<p>I believe that FetchMode.JOIN or FetchMode.SELECT should be used instead of FetchMode.EAGER, though.</p>
http://stackoverflow.com/questions/204975/tinymce-in-jspstruts-application/205143#2051431Answer by Mat Mannion for TinyMCE in JSP(Struts application)Mat Mannion2008-10-15T15:22:23Z2008-10-15T15:22:23Z<p>The compression packages are just compressed versions of the main package - you should be careful about using them because they can cause a lot of load on the client-side. The development package will probably be an unstable version of the code, so you should probably use the main package to be safe.</p>
http://stackoverflow.com/questions/52095/open-source-projects-that-are-easy-to-contribute-code-to/164100#1641000Answer by Mat Mannion for Open source projects that are easy to contribute (code) to?Mat Mannion2008-10-02T19:24:11Z2008-10-02T19:24:11Z<p>Check out <a href="http://chromium.org/" rel="nofollow">Chromium</a>.</p>
http://stackoverflow.com/questions/110587/sql-how-do-you-compare-a-clob/110797#1107971Answer by Mat Mannion for SQL - How do you compare a CLOBMat Mannion2008-09-21T11:19:53Z2008-09-21T11:19:53Z<p>I believe it's not possible to use these kind of operators on CLOB fields, because of the way they're stored.</p>
http://stackoverflow.com/questions/98240/best-j2ee-server/101279#1012790Answer by Mat Mannion for Best J2EE serverMat Mannion2008-09-19T11:53:53Z2008-09-19T11:53:53Z<p>We're a Jboss shop, but I think the plan is for us to move into Tomcat 6 (we're quite a way behind the Jboss curve as it stands). Jboss has some annoyances though!</p>
http://stackoverflow.com/questions/99164/iterate-with-for-loop-or-while-loop/101271#1012710Answer by Mat Mannion for Iterate with for loop or while loop?Mat Mannion2008-09-19T11:51:03Z2008-09-19T11:51:03Z<p>Both are fine, but remember that sometimes access to the Iterator directly is useful (such as if you are removing elements that match a certain condition - you will get a ConcurrentModificationException if you do collection.remove(o) inside a for(T o : collection) loop).</p>
<p>I prefer to write the for(blah : blah) [foreach] syntax almost all of the time because it seems more naturally readable to me. The concept of iterators in general don't really have parallels outside of programming</p>
http://stackoverflow.com/questions/101100/csv-api-for-java/101116#1011163Answer by Mat Mannion for csv api for javaMat Mannion2008-09-19T11:06:56Z2008-09-19T11:06:56Z<p>We use <a href="http://sourceforge.net/projects/javacsv/" rel="nofollow">JavaCSV</a>, it works pretty well</p>
http://stackoverflow.com/questions/81994/how-to-get-login-credentials-by-openid/82018#820184Answer by Mat Mannion for how to get login credentials by openId?Mat Mannion2008-09-17T11:03:04Z2008-09-17T11:03:04Z<p>There are two accepted methods for retrieving these kind of things by OpenID: SReg and Attribute Exchange (AX). Both of these are extensions to the standard OpenID specification; SReg is the older of the two and specifies a set of fields that can be requested and sent with authentication, whereas AX allows requesting of any attribute.</p>
<p>Both of the specification documents are pretty concise on how they work, although it's difficult to guage what the standard "names" are for attributes to be requested from AX. Usually, servers tend to implement the SReg names.</p>
<p><a href="http://openid.net/specs/openid-simple-registration-extension-1_0.html" rel="nofollow">OpenID Simple Registration Extension Specification 1.0</a></p>
<p><a href="http://openid.net/specs/openid-attribute-exchange-1_0.html" rel="nofollow">OpenID Attribute Exchange Specification 1.0 Final</a></p>
http://stackoverflow.com/questions/81323/changing-the-default-encoding-for-stringbyte/81366#813663Answer by Mat Mannion for Changing the default encoding for String(byte[])Mat Mannion2008-09-17T09:12:56Z2008-09-17T09:12:56Z<p>You need to change the locale before launching the JVM; see:</p>
<p><a href="http://bugs.sun.com/bugdatabase/view_bug.do;jsessionid=6f932817e77b249681417c21bfaf?bug_id=4163515" rel="nofollow">Java, bug ID 4163515</a></p>
<p>Some places seem to imply you can do this by setting the file.encoding variable when launching the JVM, such as </p>
<pre><code>java -Dfile.encoding=UTF-8 ...
</code></pre>
<p>...but I haven't tried this myself. The safest way is to set an environment variable in the operating system.</p>
http://stackoverflow.com/questions/75218/how-can-i-detect-when-an-exceptions-been-thrown-globally-in-java/75298#752980Answer by Mat Mannion for How can I detect when an Exception's been thrown globally in Java?Mat Mannion2008-09-16T18:13:46Z2008-09-16T18:13:46Z<p>If you're using a web framework such as <a href="http://www.springframework.org" rel="nofollow">Spring</a> then you can delegate in your web.xml to a page and then use the controller to send the email. For example:</p>
<p>In web.xml:</p>
<pre><code><error-page>
<error-code>500</error-code>
<location>/error/500.htm</location>
</error-page>
</code></pre>
<p>Then define /error/500.htm as a controller. You can access the exception from the parameter javax.servlet.error.exception:</p>
<pre><code>Exception exception = (Exception) request.getAttribute("javax.servlet.error.exception");
</code></pre>
<p>If you're just running a regular Java program, then I would imagine you're stuck with public static void main(String[] args) { try { ... } catch (Exception e) {} }</p>
http://stackoverflow.com/questions/75014/detecting-concurrent-modifications/75068#750682Answer by Mat Mannion for Detecting concurrent modifications?Mat Mannion2008-09-16T17:54:17Z2008-09-16T17:54:17Z<p>Usually you get a ConcurrentModificationException if you're trying to remove an element from a list whilst it's being iterated through.</p>
<p>The easiest way to test this is:</p>
<pre><code>List<Blah> list = new ArrayList<Blah>();
for (Blah blah : list) {
list.remove(blah); // will throw the exception
}
</code></pre>
<p>I'm not sure how you'd get around it. You may have to implement your own thread-safe list, or you could create copies of the original list for writing and have a synchronized class that writes to the list.</p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/70430#704303Answer by Mat Mannion for Why is quicksort better than mergesort?Mat Mannion2008-09-16T08:43:02Z2008-09-16T08:43:02Z<p>Wikipedia's explanation is:</p>
<blockquote>
<p>Typically, quicksort is significantly faster in practice than other Θ(nlogn) algorithms, because its inner loop can be efficiently implemented on most architectures, and in most real-world data it is possible to make design choices which minimize the probability of requiring quadratic time.</p>
</blockquote>
<p><a href="http://en.wikipedia.org/wiki/Quicksort" rel="nofollow">Quicksort</a></p>
<p><a href="http://en.wikipedia.org/wiki/Mergesort" rel="nofollow">Mergesort</a></p>
<p>I think there are also issues with the amount of storage needed for Mergesort (which is Ω(n)) that quicksort implementations don't have. In the worst case, they are the same amount of algorithmic time, but mergesort requires more storage.</p>
http://stackoverflow.com/questions/70170/in-a-client-server-application-how-to-send-to-the-db-the-users-application-pass/70186#701865Answer by Mat Mannion for In a client-server application: How to send to the DB the user's application password?Mat Mannion2008-09-16T07:51:02Z2008-09-16T07:51:02Z<p>You could connect over a secure socket connection, or hash the password locally before sending it to the database (or better, both) - Ideally, the only time the password should exist in plain text form is prior to hashing. If you can do all of that on the client side, more the better.</p>
http://stackoverflow.com/questions/65091/making-a-php-class-behave-like-an-array/65136#6513610Answer by Mat Mannion for Making a PHP class behave like an array?Mat Mannion2008-09-15T17:54:56Z2008-09-15T17:54:56Z<p>If you extend ArrayObject, or implement ArrayAccess then you can do what you want.</p>
<p><a href="http://uk2.php.net/arrayobject" rel="nofollow">http://uk2.php.net/arrayobject</a></p>
<p><a href="http://www.php.net/~helly/php/ext/spl/interfaceArrayAccess.html" rel="nofollow">http://www.php.net/~helly/php/ext/spl/interfaceArrayAccess.html</a></p>
http://stackoverflow.com/questions/64213/what-is-the-most-useful-multi-purpose-open-source-library-for-java/64231#642313Answer by Mat Mannion for What is the most useful multi-purpose open-source library for java?Mat Mannion2008-09-15T16:03:02Z2008-09-15T16:03:02Z<p>The <a href="http://code.google.com/p/google-collections/" rel="nofollow">Google Collections API</a> is pretty handy if you use lots of, well, Collections...</p>
http://stackoverflow.com/questions/64000/draining-standard-error-in-java/64183#641832Answer by Mat Mannion for Draining Standard Error in JavaMat Mannion2008-09-15T15:57:29Z2008-09-15T15:57:29Z<p>Set the redirectErrorStream property on ProcessBuilder to send stderr output to stdout:</p>
<pre><code>ProcessBuilder builder = new ProcessBuilder(command);
builder.redirectErrorStream(true);
</code></pre>
<p>You should then create a thread to deal with the process stream, something like the following:</p>
<pre><code>Process p = builder.start();
InputHandler outHandler = new InputHandler(p.getInputStream());
</code></pre>
<p>Where InputHandler is defined as:</p>
<pre><code>private static class InputHandler extends Thread {
private final InputStream is;
private final ByteArrayOutputStream os;
public InputHandler(InputStream input) {
this.is = input;
this.os = new ByteArrayOutputStream();
}
public void run() {
try {
int c;
while ((c = is.read()) != -1) {
os.write(c);
}
} catch (Throwable t) {
throw new IllegalStateException(t);
}
}
public String getOutput() {
try {
os.flush();
} catch (Throwable t) {
throw new IllegalStateException(t);
}
return os.toString();
}
}
</code></pre>
<p>Alternatively, just create two InputHandlers for the InputStream and ErrorStream. Knowing that the program will block if you don't read them is 90% of the battle :)</p>
http://stackoverflow.com/questions/63687/calling-function-when-program-exits-in-java/63701#637016Answer by Mat Mannion for Calling function when program exits in javaMat Mannion2008-09-15T15:03:27Z2008-09-15T15:45:04Z<p>You can add a shutdown hook to your application by doing the following:</p>
<pre><code>Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
public void run() {
// what you want to do
}
}));
</code></pre>
<p>This is basically equivalent to having a try {} finally {} block around your entire program, and basically encompasses what's in the finally block.</p>
<p>Please note the <a href="http://stackoverflow.com/questions/63687/calling-function-when-program-exits-in-java#63886">caveats</a> though!</p>
http://stackoverflow.com/questions/59299/hibernate-maxelementsondisk-from-ehcache-to-treecache/61394#613942Answer by Mat Mannion for Hibernate - maxElementsOnDisk from EHCache to TreeCacheMat Mannion2008-09-14T15:04:53Z2008-09-14T15:04:53Z<p><a href="http://www.junlu.com/msg/179368.html" rel="nofollow">This page</a> seems to imply that the correct configuration element is:</p>
<pre><code><attribute name="MaxCapacity">20000</attribute></code></pre>
<p>However, I've only ever used EHCache myself.</p>
http://stackoverflow.com/questions/1227891/port-80-forwarding-no-css-or-imagesComment by Mat Mannion on Port 80 forwarding - no css or images.Mat Mannion2009-08-04T14:38:57Z2009-08-04T14:38:57ZCan you post your Apache access/error logs?http://stackoverflow.com/questions/1226874/java-lang-noclassdeffounderror-com-hp-hpl-jena-shared-baduriexception-on-running/1226887#1226887Comment by Mat Mannion on java.lang.NoClassDefFoundError: com/hp/hpl/jena/shared/BadURIException on running servletMat Mannion2009-08-04T11:26:32Z2009-08-04T11:26:32Z@brice It could be your application, or one of the libraries it uses, but somewhere along the line there would seem to be a dependency on Jena. If it happens in Tomcat as well it seems unlikely to be Winstonehttp://stackoverflow.com/questions/82151/is-there-a-fast-accurate-highlighter-for-lucene/651662#651662Comment by Mat Mannion on Is there a fast, accurate Highlighter for Lucene?Mat Mannion2009-03-31T08:31:47Z2009-03-31T08:31:47ZThanks for pointing that out Peter, I'll give that a go and see if it's usable for us.http://stackoverflow.com/questions/82151/is-there-a-fast-accurate-highlighter-for-luceneComment by Mat Mannion on Is there a fast, accurate Highlighter for Lucene?Mat Mannion2009-03-31T08:29:43Z2009-03-31T08:29:43ZThanks for pointing that out, I've fixed the link.http://stackoverflow.com/questions/119994/should-an-index-be-optimised-after-incremental-indexes-in-lucene/120376#120376Comment by Mat Mannion on Should an index be optimised after incremental indexes in Lucene?Mat Mannion2008-09-23T11:25:19Z2008-09-23T11:25:19ZCheers, guess I was wondering whether people had experience of this before I dived in and started messing with a production system :)http://stackoverflow.com/questions/82151/is-there-a-fast-accurate-highlighter-for-lucene/84993#84993Comment by Mat Mannion on Is there a fast, accurate Highlighter for Lucene?Mat Mannion2008-09-18T12:10:11Z2008-09-18T12:10:11ZUnfortunately, the solr highlighter just delegates to the highlighter in the Lucene Sandbox - it doesn't do anything clever :(http://stackoverflow.com/questions/75218/how-can-i-detect-when-an-exceptions-been-thrown-globally-in-java/75298#75298Comment by Mat Mannion on How can I detect when an Exception's been thrown globally in Java?Mat Mannion2008-09-17T17:56:59Z2008-09-17T17:56:59ZAh, thanks - I only have experience with Spring so I didn't want to speak out of turn :)http://stackoverflow.com/questions/82151/is-there-a-fast-accurate-highlighter-for-lucene/84993#84993Comment by Mat Mannion on Is there a fast, accurate Highlighter for Lucene?Mat Mannion2008-09-17T17:55:57Z2008-09-17T17:55:57ZThanks, taking a look at Solr - I think I've always confused it with Nutch in the past and assumed they were the same thing, silly me. I notice in the Solr docs it seems to separate out a PhraseHighlighter and a standard Highlighter, so I'm not imbued with much confidence I'm afraid :(http://stackoverflow.com/questions/65091/making-a-php-class-behave-like-an-array/65136#65136Comment by Mat Mannion on Making a PHP class behave like an array?Mat Mannion2008-09-16T07:48:22Z2008-09-16T07:48:22ZYou can use isset, I believe, but you can't use array_key_exists.http://stackoverflow.com/questions/64061/what-feed-reader-libraries-for-java-are-best/64094#64094Comment by Mat Mannion on What Feed Reader libraries for Java are best?Mat Mannion2008-09-15T16:04:42Z2008-09-15T16:04:42ZI like ROME, although it's not without its flaws - no caching architecture so you'll have to do that yourself, and you can sometimes get problems trying to read RSS and Atom in the same way due to the inherent nature of allowing multiple content fields in Atom.