Alex Miller

6,089
Reputation
2283 views

Registered User

name Alex Miller
member for 1 year
seen 5 hours ago
website
location St. Louis, MO
age 35
I like nachos.
Nov
23
accepted Java: How to load Class stored as byte[] into the JVM?
Nov
23
comment Java: How to load Class stored as byte[] into the JVM?
@ShaChris23 - sure, why wouldn't it? @Stephen C - that seems like a limited view of what Java classloaders can do. Why do you say probably not?
Nov
23
revised Java: How to load Class stored as byte[] into the JVM?
retag
Nov
23
answered Java: How to load Class stored as byte[] into the JVM?
Nov
20
comment Is List<List<String>> an instance of Collection<Collection<T>>?
Totally unrelated to your question, I would be very very likely to use the word "flatten" in the method name for a method that did this.
Nov
17
answered Should you provide dependent libraries in client jar?
Nov
16
answered parse log file - using java and plot graph
Nov
16
answered Alternatives to Quartz for job scheduling
Nov
16
answered How do I diagnose “Unhandled Exceptions” in Java?
Nov
15
comment Is HashMap in Java collision safe
In particular on the second, the value would only be overwritten if a) the hashCode() is the same and b) the equals() evaluates to true.
Nov
14
comment Object Graph / Persistence Question
I believe in WebFlow, you can define state that has either page or flow scope. I think I would do what makes sense for your app.
Nov
14
answered Object Graph / Persistence Question
Nov
14
answered P2P or Distributed System implementation
Nov
14
revised Grokking Timsort
added 156 characters in body
Nov
14
answered Grokking Timsort
Nov
10
accepted Detect whether Java class is loadable
Nov
10
comment Is there any reason to avoid the sentinel pattern in Java?
I agree with this principle and recommend following it. The dirty secret is that the exception throw version is insanely fast, esp if you used a cached exception singleton. But I wouldn't do that unless I needed insane speed and I could prove it was faster. I mention it here merely because it's interesting.
Nov
10
answered Is there any reason to avoid the sentinel pattern in Java?
Nov
10
revised Is there a way to get which classes a ClassLoader has loaded?
edited body
Nov
10
comment Distributed Caching
Terracotta does not have a SPOF - you can use as many hot backups as you want that take over when an active server dies. With Terracotta FX, you can even have multiple actives for greater scale.
Nov
10
answered Distributed Caching
Nov
10
revised Is there a way to get which classes a ClassLoader has loaded?
edited tags
Nov
10
answered Is there a way to get which classes a ClassLoader has loaded?
Nov
10
answered Detect whether Java class is loadable
Nov
9
answered Why do SQL INSERT and UPDATE Statements have Different Syntaxes?
Nov
9
answered How to use ReadWriteLock ?
Nov
9
comment Frequently Used metadata Hashmap
0.75*capacity is probably not what you mean here. Assuming you actually mean capacity/0.75 ? Also getCapacity is missing a parens and I would prefer ref'ing m_capacity to LRUCache.this.cacheSize in removeEldestEntry().
Nov
6
answered EHCache Disable
Nov
6
answered EHCache error on looking up by cache key
Nov
6
comment How to config QueryCache in ehcache.xml
Make sure that you don't set up the UpdateTimestampsCache to expire elements, or at least not to expire them faster than your query cache. This will cause query results to be invalidated unnecessarily.
Nov
6
comment Ehcache / Hibernate and RMI replication with large number of entities
The 1500 limit is addressed with jira.terracotta.org/jira/browse/EHC-424 for upcoming Ehcache 1.7.1.
Nov
6
comment Ehcache / Hibernate and RMI replication with large number of entities
If you just set up a defaultcache, then that will be cloned to create each necessary entity cache. AFAIK, you will NOT get "one big cache".
Nov
6
answered Ehcache / Hibernate and RMI replication with large number of entities
Nov
2
accepted What is the best java conference to visit
Nov
1
awarded  Nice Answer
Oct
25
comment Re-creating threading and concurrency knowledge in increasingly popular languages
Well, it has the most constrained one because they actually are trying to hit a portable target. You can see some of the wiggle coming back in the upcoming Fences API though.
Oct
1
accepted Terracotta - Cannot cast to com.tc.object.bytecode.TransparentAccess
Sep
30
accepted What is the best conference in the United States for Software Developers
Sep
16
awarded  Yearling
Sep
15
accepted How to sort a view using Drupal Fivestar average ratings?
Sep
13
answered How to sort a view using Drupal Fivestar average ratings?
Sep
13
comment How to sort a view using Drupal Fivestar average ratings?
I was not aware such a thing existed...I'll check it out.
Sep
13
revised How to sort a view using Drupal Fivestar average ratings?
added 9 characters in body
Sep
13
asked How to sort a view using Drupal Fivestar average ratings?
Sep
9
awarded  Nice Answer
Aug
27
revised Should an interface that is inherited from base-class be implemented explicitly in subclass?
deleted 2 characters in body
Aug
27
accepted Should an interface that is inherited from base-class be implemented explicitly in subclass?
Aug
25
accepted Book for c++ threading?
Aug
20
awarded  Enlightened
Aug
13
revised Why is January month 0 in Java Calendar ?
added 70 characters in body