User Juha Syrjälä - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T18:07:09Zhttp://stackoverflow.com/feeds/user/1431http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1808535/distinct-of-date/1808580#18085800Answer by Juha Syrjälä for Distinct of dateJuha Syrjälä2009-11-27T12:47:16Z2009-11-27T12:47:16Z<p><a href="http://stackoverflow.com/questions/1808535/distinct-of-date/1808559#1808559">Jim B's answer</a> describes how to get list where every date occurs exactly once.</p>
<p>Or maybe you need dates that occur only once in your table. Your question is unclear.</p>
<pre><code>select your_date_field
from your_table
group by your_date_field
having count(1) = 1;
</code></pre>
http://stackoverflow.com/questions/1761604/how-to-limit-upload-file-size-in-wicket0How to limit upload file size in WicketJuha Syrjälä2009-11-19T07:52:13Z2009-11-26T09:11:46Z
<p>How to limit file size in uploads in <a href="http://wicket.apache.org/" rel="nofollow">Apache Wicket</a> version 1.4?</p>
<p>I am using <a href="http://wicket.apache.org/docs/1.4/org/apache/wicket/markup/html/form/upload/FileUploadField.html" rel="nofollow">FileUploadField</a> to handle upload with normal form submit without any Ajax stuff. Is it enough to use <a href="http://wicket.apache.org/docs/1.4/org/apache/wicket/markup/html/form/Form.html#getMaxSize()" rel="nofollow">Form.setMaxSize()</a> to limit the size of uploaded file? </p>
<p>If user starts to send a file that is above limit, what happens? Will the connection be closed immediately when server notices that limit has been passed, or is the size check done after the whole request have been received?</p>
<p>I'd like to prevent a case where user uploads file of several GBs that doesn't fit to memory or disk while Wicket handles the request.</p>
http://stackoverflow.com/questions/1791944/javascript-file-dependencies-selective-load-resource-files-prevent-duplicates/1792022#17920221Answer by Juha Syrjälä for Javascript file dependencies - Selective load resource files & prevent duplicatesJuha Syrjälä2009-11-24T18:33:45Z2009-11-24T18:40:40Z<p>Probably easiest approach is to include the whole js resource library once when you are using one or both of the controls. This should be handled by your server side scripting (php etc.)</p>
<p>Store you <script src=".." > tag to head part of the page. When you are adding a new control to the page, check if head part already contains the required library, if not, then add the library. <em>Do not include same libary more than once per page, if at all possible.</em></p>
<p>For example:</p>
<pre><code><html>
<head>
<script type="text/javascript" src="/Webservice.asmx/js" />
</head>
<body>
<h1>Control1</h1>
<h1>Control2</h1>
</body>
</html>
</code></pre>
<p><hr></p>
<p>The optimal, in page load time sense, is to make three versions of the resource library. However this is most likely overkill.</p>
<ol>
<li>version contains required parts for control A</li>
<li>version contains required parts for control B</li>
<li>version contains all required parts for controls A and B</li>
</ol>
<p>Then you must select correct version depending if you are using control A, control B or both. </p>
http://stackoverflow.com/questions/1784788/activerecord-fundamentally-incompatible-with-composite-keys/1784890#17848900Answer by Juha Syrjälä for ActiveRecord fundamentally incompatible with composite keys?Juha Syrjälä2009-11-23T18:01:17Z2009-11-23T18:11:02Z<p>Ruby on Rails does not support composite primary keys in model object out of the box. However, there are plugins that accomplish that, for example <a href="http://compositekeys.rubyforge.org/" rel="nofollow">this</a>.</p>
<p>You can have composite primary key on a join table, but Rails will not create that primary key, you have to create it manually.
See <a href="http://guides.rubyonrails.org/association_basics.html#the-has-and-belongs-to-many-association" rel="nofollow">this guide.</a></p>
http://stackoverflow.com/questions/1781478/how-to-reduce-number-of-rows-scanned-by-mysql/1781521#17815210Answer by Juha Syrjälä for How To Reduce Number of Rows Scanned by MySQLJuha Syrjälä2009-11-23T07:05:58Z2009-11-23T07:05:58Z<p>Executing <a href="http://dev.mysql.com/doc/refman/5.1/en/optimize-table.html" rel="nofollow">OPTIMIZE TABLE</a> may not help, but it doesn't hurt either. </p>
http://stackoverflow.com/questions/1779980/how-to-structure-my-database/1780032#17800321Answer by Juha Syrjälä for How to structure my database?Juha Syrjälä2009-11-22T21:16:32Z2009-11-22T21:16:32Z<p>Seems to be rather reasonable structure. However, maybe I would replace the textual role-field with reference to separate ROLE table, or with with integer that denotes the role.</p>
<pre><code>group_members
(group_id, user_id, role_id)
role
( role_id, name)
</code></pre>
<p>or</p>
<pre><code> group_members VALUES
(1, 1, 1)
role 1 => group admin
role 2 => group member
etc.
</code></pre>
http://stackoverflow.com/questions/1779301/sha-1-hash-for-storing-files/1779341#17793412Answer by Juha Syrjälä for SHA-1 hash for storing FilesJuha Syrjälä2009-11-22T17:26:05Z2009-11-22T17:37:32Z<p>First of all, if the contents of the files are changing, filename from SHA-digest approach is not very suitable, because the name and location of the file in filesystem must change when the contents of the file changes.</p>
<p><hr></p>
<p>Basically you first compute a SHA-1 or MD5 digest (= hash value) from the contents of the file.</p>
<p>When you have a digest, for example, <code>00e4f56c0de1c61fdb926e79e8a0a65bd12930c9</code>, you generate a file location and filename from the digest. For example, you split the first few characters from the digest to directory structure and rest of the characters to file name. For example:</p>
<pre><code> 00e4f56c0de1c61fdb926e79e8a0a65bd12930c9 => some/path/00/e4/f5/6c0de1c61fdb926e79e8a0a65bd12930c9.txt
</code></pre>
<p>This way you only need to store the SHA-1 digest of the file to database. You can then always find out the right location and the name of the file.</p>
<p>Directories usually also have maximum number of files they can contain, for example maximum of 32000 subdirectories and files per directory. A directory structure based on this kind of hashing makes it unlikely that you store too many files to same directory. Also using hashing like this make sure that every directory has about the same number of files, you won't get into situation where all your files are in same directory.</p>
http://stackoverflow.com/questions/1779121/domain-language-what-is-the-best-way-to-express/1779203#17792030Answer by Juha Syrjälä for Domain Language: What is the best way to express?Juha Syrjälä2009-11-22T16:37:24Z2009-11-22T16:37:24Z<p>For example, Ruby on Rails provides this kind of domain specific language. See migrations and ActiveRecord validations.</p>
<p>It provides some simple parts of your system, but anything complex must be still coded "by hand". </p>
http://stackoverflow.com/questions/1778639/it-looks-like-a-button-but-it-is-not-an-input-element-how-can-such-an-element-b/1778645#17786452Answer by Juha Syrjälä for It looks like a button, but it is not an input element. How can such an element be created?Juha Syrjälä2009-11-22T13:08:15Z2009-11-22T13:08:15Z<p>Maybe it is <a href="http://www.w3schools.com/tags/tag_button.asp" rel="nofollow">a button</a> element? Or <a href="http://www.w3schools.com/tags/tag_img.asp" rel="nofollow">img</a> element with a image of a button?</p>
http://stackoverflow.com/questions/1771633/optimize-sql-query-for-canceled-orders/1771675#17716751Answer by Juha Syrjälä for Optimize SQL query for canceled ordersJuha Syrjälä2009-11-20T16:33:22Z2009-11-20T16:45:29Z<p>Something like this? This assumes that every order has at least one product, otherwise this query will return also orders without any products.</p>
<pre><code> select order_id
from orders o
where not exists (select 1 from order_products op
where canceled = 0
and op.order_id = o.order_id
)
and o.customer_id = 1234
</code></pre>
http://stackoverflow.com/questions/1759610/hql-with-a-collection-in-the-where-clause/1759678#17596781Answer by Juha Syrjälä for HQL with a collection in the WHERE clause Juha Syrjälä2009-11-18T22:41:13Z2009-11-19T19:17:39Z<p>HQL query would be probably something along these lines:</p>
<pre>
select c
from Contact c
join c.phones cphones
where c.userAccount.email = :email
and cphones.formatedNumber = :number
</pre>
<p>Also you may want to handle results of query like this. The <em>list()</em> method returns always a list, never a null.</p>
<pre><code> return !result.isEmpty();
</code></pre>
http://stackoverflow.com/questions/1758522/alarm-history-stack-or-queue/1758568#17585685Answer by Juha Syrjälä for Alarm history stack or queue?Juha Syrjälä2009-11-18T19:46:46Z2009-11-18T19:46:46Z<p>See a related question <a href="http://stackoverflow.com/questions/1669245/circular-buffer-in-flash">Circular buffer in Flash</a>.</p>
http://stackoverflow.com/questions/1758374/error-your-application-used-more-memory-than-the-safety-cap-of-500m-specify-j/1758465#17584651Answer by Juha Syrjälä for Error: Your application used more memory than the safety cap of 500m. Specify -J-Xmx####m to increase it (#### = cap size in MB). Specify -w for full OutOfMemoryError stack traceJuha Syrjälä2009-11-18T19:31:36Z2009-11-18T19:31:36Z<p>You are running out of memory (heap) reserved for Java virtual machine. Try to increase it in server startup with command line parameters or configuration files.</p>
<p>Something like this:</p>
<pre><code>server_start_command -J-Xm900m
</code></pre>
<p>Or fix your ruby script to use less heap memory.</p>
http://stackoverflow.com/questions/1606660/dynamic-mapping-in-hibernate/1758338#17583380Answer by Juha Syrjälä for Dynamic mapping in hibernate?Juha Syrjälä2009-11-18T19:14:11Z2009-11-18T19:14:11Z<p>It is possible to generate hibernate configuration and domain classes based on database schema. Maybe this is what you are looking for? Of course, you would have to compile your app every time database schema changes.</p>
<p>Maybe you could consider also other mapping tools, like <a href="http://ibatis.apache.org/" rel="nofollow">iBatis</a> where you can define queries etc. in configuration. </p>
http://stackoverflow.com/questions/1757363/java-hashmap-performance-optimization-alternative/1757826#17578260Answer by Juha Syrjälä for Java HashMap performance optimization / alternativeJuha Syrjälä2009-11-18T17:49:32Z2009-11-18T19:00:51Z<p>You could try to cache computed hash code to the key object. </p>
<p>Something like this:</p>
<pre><code>public int hashCode() {
if(this.hashCode == null) {
this.hashCode = computeHashCode();
}
return this.hashCode;
}
private int computeHashCode() {
int hash = 503;
hash = hash * 5381 + (a[0] + a[1]);
hash = hash * 5381 + (b[0] + b[1] + b[2]);
return hash;
}
</code></pre>
<p>Of course you have to be careful not to change contents of the key after the hashCode has been calculated for the first time.</p>
<p>Edit: It seems that caching has code values is not worthwhile when you are adding each key only once to a map. In some other situation this could be useful. </p>
http://stackoverflow.com/questions/1758189/anonymous-class-question/1758202#17582028Answer by Juha Syrjälä for Anonymous class questionJuha Syrjälä2009-11-18T18:48:59Z2009-11-18T18:54:35Z<p>You are not defining a constructor in anonymous class, you are calling a constructor from superclass. </p>
<p>You can't add a proper constructor for anonymous class, however, you can do something similar. Namely an initialization block.</p>
<pre><code>public class SuperClass {
public SuperClass(String parameter) {
// this is called when anonymous class is created
}
}
// an anonymous class is created and instantiated here
new SuperClass(parameterForSuperClassConstructor) {
{
// this code is executed when object is initialized
// and can be used to do many same things as a constructors
}
private void someMethod() {
}
}
</code></pre>
http://stackoverflow.com/questions/1757921/mysql-prevent-duplicate-records-in-table-via-index/1757935#17579353Answer by Juha Syrjälä for MySQL - Prevent duplicate records in table via index?Juha Syrjälä2009-11-18T18:05:55Z2009-11-18T18:34:58Z<p>Are you sure that you are using <em>unique index</em> instead of a normal index?</p>
<pre><code>create unique index uix on my_table (date, door, shift, route, trailer);
</code></pre>
<p>Also that kind of index only makes sure that combination of fields is unique, you can for example have several duplicate dates if, for example, field door is different on every row. The difference could something that is hard to spot, for example a space in end of the value or lowercase/uppercase difference.</p>
<p>Update: your unique index seems to be in order. The problem is elsewhere.</p>
http://stackoverflow.com/questions/1757363/java-hashmap-performance-optimization-alternative/1757707#17577071Answer by Juha Syrjälä for Java HashMap performance optimization / alternativeJuha Syrjälä2009-11-18T17:29:48Z2009-11-18T18:31:13Z<p>First you should check that you are using Map correctly, good hashCode() method for keys, initial capacity for Map, right Map implementation etc. like many other answers describe.</p>
<p>Then I would suggest using a profiler to see what is actually happening and where the execution time is spent. Is, for example, hashCode() method executed for billions of times?</p>
<p>If that doesn't help, how about using something like <a href="http://ehcache.org/" rel="nofollow">EHCache</a> or <a href="http://memcached.org/" rel="nofollow">memcached</a>? Yes, they are products for caching but you could configure them so that they will have enough capacity and will never evict any values from cache storage.</p>
<p>Another option would be some database engine that is lighter weight than full SQL RDBMS. Something like <a href="http://www.oracle.com/technology/products/berkeley-db/index.html" rel="nofollow">Berkeley DB</a>, maybe.</p>
<p>Note, that I have personally no experience of these products' performance, but they could be worth the try.</p>
http://stackoverflow.com/questions/1751844/java-convert-liststring-to-a-joind-string/1751876#17518761Answer by Juha Syrjälä for Java: convert List<String> to a join()d stringJuha Syrjälä2009-11-17T21:19:36Z2009-11-17T21:25:38Z<p>Code you have is right way to do it if you want to do using JDK without any external libraries. There is no simple "one-liner" that you could use in JDK. </p>
<p>If you can use external libs, I recommend that you look into <a href="http://commons.apache.org/lang/api/org/apache/commons/lang/StringUtils.html" rel="nofollow">org.apache.commons.lang.StringUtils</a> class in Apache Commons library. </p>
<p>An example of usage:</p>
<pre><code>List<String> list = Arrays.asList("Bill", "Bob", "Steve");
String joinedResult = StringUtils.join(list, " and ");
</code></pre>
http://stackoverflow.com/questions/1741160/how-can-i-create-a-password/1741176#17411766Answer by Juha Syrjälä for how can I create a password?Juha Syrjälä2009-11-16T09:56:59Z2009-11-17T06:40:49Z<p>Use <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/security/SecureRandom.html" rel="nofollow">SecureRandom</a>, it provides a more random passwords.</p>
<p>You can create a single password using something like this (note: untested code).</p>
<pre><code>// put here all characters that are allowed in password
char[] allowedCharacters = {'a','b','c','1','2','3','4'};
SecureRandom random = new SecureRandom();
StringBuffer password = new StringBuffer();
for(int i = 0; i < PASSWORD_LENGTH; i++) {
password.append(allowedCharacters[ random.nextInt(allowedCharacters.length) ]);
}
</code></pre>
<p>Note that this <em>does not guarantee</em> that the every password will have both digits and characters.</p>
http://stackoverflow.com/questions/1737514/how-should-i-create-a-web-interface-for-my-application/1737535#17375355Answer by Juha Syrjälä for How should I create a web interface for my application?Juha Syrjälä2009-11-15T13:29:58Z2009-11-15T13:42:40Z<p>I recommend that you use some kind of web framework, it will make things a lot easier. Since you already know Python you should look into <a href="http://www.djangoproject.com/" rel="nofollow">Django framework.</a> It seems that you can use SQLAlchemy with Django, see <a href="http://code.google.com/p/django-sqlalchemy/" rel="nofollow">djange-sqlalchemy project.</a></p>
<p>I recommend using <a href="http://jquery.com/" rel="nofollow">JQuery framework/library</a> for Javascript stuff. It greatly simplifies coding and takes care of most web browser incompabilities.</p>
<p>This CSS <a href="http://www.csstutorial.net/css_tutorial_part1.php" rel="nofollow">tutorial</a> seems to give you the basics.</p>
<p>I would start by reading the <a href="http://docs.djangoproject.com/en/dev/intro/tutorial01/#intro-tutorial01" rel="nofollow">Django tutorial</a> and start trying things out. I wouldn't worry too much about HTML stuff, you should be able to pick up enough from Django tutorial. Make your site first functional with HTML, Django and SQLAlchemy. Only then start worring about Javascript. Who knows, maybe you do not need Javascript at all?</p>
<p>Do not try make your site work and look good at the same time. When you are making your site work, use simple and ugly HTML pages. When you are making you web site look good, work only with static HTML pages and CSS files. It is easier to combine the two in the end.</p>
http://stackoverflow.com/questions/1711492/what-are-the-different-types-of-keys-in-rdbms-with-example/1711621#17116212Answer by Juha Syrjälä for What are the Different types of Keys in RDBMS ?With example..Juha Syrjälä2009-11-10T22:14:50Z2009-11-10T22:14:50Z<p>Ólafur forgot the <a href="http://en.wikipedia.org/wiki/Surrogate_key" rel="nofollow">surrogate key</a>:</p>
<blockquote>
<p>A surrogate key in a database is a unique identifier for either an entity in the modeled world or an object in the database. The surrogate key is not derived from application data.</p>
</blockquote>
http://stackoverflow.com/questions/1710837/managing-cache-invalidation/1711436#17114361Answer by Juha Syrjälä for Managing Cache InvalidationJuha Syrjälä2009-11-10T21:43:20Z2009-11-10T21:43:20Z<p><a href="http://blog.leetsoft.com/2007/5/22/the-secret-to-memcached" rel="nofollow">See this article</a> and related <a href="http://stackoverflow.com/questions/1188587/cache-invalidation-is-there-a-general-solution">Stack Overflow question</a>.</p>
<p>In general cache invalidation can be rather tricky especially when cached objects are updated.</p>
http://stackoverflow.com/questions/1711327/why-does-scala-create-a-tmp-directory-when-i-run-a-script/1711382#17113821Answer by Juha Syrjälä for Why does Scala create a ~/tmp directory when I run a script?Juha Syrjälä2009-11-10T21:35:32Z2009-11-10T21:35:32Z<p>Scala probably compiles the script to byte code, and byte code files are stored temporarily under tmp directory. That would be my guess.</p>
http://stackoverflow.com/questions/1710374/database-not-dropped-in-between-unit-test/1710439#17104391Answer by Juha Syrjälä for Database not dropped in between unit testJuha Syrjälä2009-11-10T19:10:46Z2009-11-10T19:28:43Z<p>Shouldn't you have some code to drop/remove the unit-test database after (or preferably before) each test? Are you sure that you are actually creating the database at all? What database engine you are using?</p>
<p>If you are using some memory based database, are you initializing it in the right place (every time a test is executed)?</p>
<p>Are you calling SessionFactory.close() somewhere? If you are using <code>hibernate.hbm2ddl.auto=create-drop</code>, that should handle the dropping of the database.</p>
http://stackoverflow.com/questions/1676551/best-way-to-test-if-a-row-exists-in-a-mysql-table/1676698#16766980Answer by Juha Syrjälä for Best way to test if a row exists in a MySQL tableJuha Syrjälä2009-11-04T21:18:31Z2009-11-04T21:18:31Z<p>SELECT COUNT(*) is most likely faster. When you do SELECT COUNT(*), the database engine must send you only one number, possibly over network.</p>
<p>When you do SELECT *, the database engine must send you the whole row, which is significantly faster. Also in this case the database engine must also fetch more data from its memory and/or disk.</p>
<p>However, to get exact answer, you should measure how long it takes using each approach.</p>
http://stackoverflow.com/questions/750591/how-to-fetch-current-subversion-revision-number-and-url-with-maven2How to fetch current subversion revision number and URL with mavenJuha Syrjälä2009-04-15T07:03:40Z2009-11-04T17:00:14Z
<p>I make a checkout of some branch or tag from subversion repository and then build the project with maven. </p>
<p>Now, I'd like to get store <em>current</em> revision number and URL to some file. How can I do that? That is, I'd like to get revision number and URL of whatever branch/tag I have made checkout of.</p>
<p>I know about <a href="http://mojo.codehaus.org/buildnumber-maven-plugin/" rel="nofollow">buildnumber-maven-plugin</a> but I think it doesn't do this. It fetches revision number of branch that is specified in pom.xml.</p>
http://stackoverflow.com/questions/1674164/using-a-project-from-source-control-across-repositories-and-solutions/1674193#16741932Answer by Juha Syrjälä for Using a project from source control across repositories and solutionsJuha Syrjälä2009-11-04T14:44:00Z2009-11-04T14:50:18Z<p>How about using <a href="http://svnbook.red-bean.com/en/1.0/ch07s03.html" rel="nofollow">svn:externals</a>?</p>
<p>Basically you designate one directory in your working copy as a "symbolic link" to another repository. When you update your main working copy you also get updates from external repository.</p>
<p>Another option would be to use some kind of central repository where you store the compiled .dlls. Something similar to Java world's <a href="http://maven.apache.org/guides/introduction/introduction-to-repositories.html" rel="nofollow">maven repositories</a>. I don't know if such beasts exists for Visual Studio.</p>
http://stackoverflow.com/questions/1668304/how-does-google-calculate-my-location-on-a-desktop/1668574#16685740Answer by Juha Syrjälä for How does Google calculate my location on a desktop?Juha Syrjälä2009-11-03T16:43:56Z2009-11-03T16:43:56Z<p>It is possible get your approximate locate based on your IP address (wireless or fixed).</p>
<p>See for example <a href="http://www.hostip.info/" rel="nofollow">hostip.info</a> or <a href="http://www.maxmind.com/app/ip-location" rel="nofollow">maxmind</a> which basically provide a mapping from IP address to geographical coordinates. The probably use many kinds of heuristics and datasources. This kind of system has probably enough accuracy to put you in right major city, in most cases.</p>
<p>Google probably uses somewhat similar approach in addition to WiFi tricks.</p>
http://stackoverflow.com/questions/1662444/hibernate-entity-with-restriction/1662733#16627330Answer by Juha Syrjälä for Hibernate entity with restrictionJuha Syrjälä2009-11-02T17:58:56Z2009-11-02T19:29:46Z<ol>
<li><p>You could create a view and then map that view to entity:</p>
<pre><code>create view my_data as
select ... from ...
@Entity(table="my_data")
public class MyData { ... }
</code></pre></li>
<li><p>One option is to map the table normally, then you could fetch your always entities through a query or a <a href="http://docs.jboss.org/hibernate/stable/annotations/reference/en/html_single/#entity-hibspec-filters" rel="nofollow">filter</a>.</p></li>
<li><p>You could also make a <a href="http://docs.jboss.org/hibernate/core/3.3/reference/en/html/querysql.html" rel="nofollow">native SQL query</a> and map the entity on the results:</p>
<pre><code>Query q = sess.createSQLQuery("SELECT DISTINCT fieldA, fieldB FROM some_table")
.addEntity(MyEntity.class);
List<MyEntity> cats = q.list();
</code></pre></li>
<li><p>It might be also possible to add DISTINCT to this type of <a href="http://docs.jboss.org/hibernate/core/3.3/reference/en/html/queryhql.html" rel="nofollow">HQL query</a>:</p>
<pre><code>select new Family(mother, mate, offspr)
from DomesticCat as mother
join mother.mate as mate
left join mother.kittens as offspr
</code></pre></li>
</ol>
<p>Methods 1, 3 and 4 will make a read-only mapping.</p>
<p>Could you be more specific about the criteria you are using? The view approach is more generic since you can't do everything with a hibernate query or filter.</p>
http://stackoverflow.com/questions/1761604/how-to-limit-upload-file-size-in-wicketComment by Juha Syrjälä on How to limit upload file size in WicketJuha Syrjälä2009-11-26T09:13:22Z2009-11-26T09:13:22ZHmm. No answers yet? I already got a tumbleweed badge from this question...http://stackoverflow.com/questions/1791944/javascript-file-dependencies-selective-load-resource-files-prevent-duplicatesComment by Juha Syrjälä on Javascript file dependencies - Selective load resource files & prevent duplicatesJuha Syrjälä2009-11-24T18:42:56Z2009-11-24T18:42:56ZWhat server side scripting you are using? e.g. php, jsp etc?http://stackoverflow.com/questions/1784631/hibernate-query-vs-criteria-performanceComment by Juha Syrjälä on Hibernate Query vs Criteria PerformanceJuha Syrjälä2009-11-23T18:46:58Z2009-11-23T18:46:58ZCan you show the HQL and Criteria queries?http://stackoverflow.com/questions/1781478/how-to-reduce-number-of-rows-scanned-by-mysqlComment by Juha Syrjälä on How To Reduce Number of Rows Scanned by MySQLJuha Syrjälä2009-11-23T07:06:23Z2009-11-23T07:06:23ZWhat database engine you are using?http://stackoverflow.com/questions/1780129/hibernate-order-by-using-criteria-apiComment by Juha Syrjälä on Hibernate: ORDER BY using Criteria APIJuha Syrjälä2009-11-22T21:57:21Z2009-11-22T21:57:21ZWhat does your Cat class and its mapping look like? http://stackoverflow.com/questions/1779980/how-to-structure-my-database/1780032#1780032Comment by Juha Syrjälä on How to structure my database?Juha Syrjälä2009-11-22T21:24:37Z2009-11-22T21:24:37ZWhy the downvotes?http://stackoverflow.com/questions/1779301/sha-1-hash-for-storing-files/1779323#1779323Comment by Juha Syrjälä on SHA-1 hash for storing FilesJuha Syrjälä2009-11-22T17:44:31Z2009-11-22T17:44:31ZIf you use hash then several identical copies of the same files are stored to same location. With random number, the files will be stored to different locations. This may be an advantage or disadvantage, depending on your case.http://stackoverflow.com/questions/1779301/sha-1-hash-for-storing-files/1779341#1779341Comment by Juha Syrjälä on SHA-1 hash for storing FilesJuha Syrjälä2009-11-22T17:40:00Z2009-11-22T17:40:00Z@viatropos, yep, thats about it. You could also give every file an unique number from sequence and use that instead of the SHA-1 digest.http://stackoverflow.com/questions/1759610/hql-with-a-collection-in-the-where-clause/1759678#1759678Comment by Juha Syrjälä on HQL with a collection in the WHERE clause Juha Syrjälä2009-11-19T19:18:03Z2009-11-19T19:18:03Z@framer8, fixedhttp://stackoverflow.com/questions/1757921/mysql-prevent-duplicate-records-in-table-via-indexComment by Juha Syrjälä on MySQL - Prevent duplicate records in table via index?Juha Syrjälä2009-11-18T18:37:05Z2009-11-18T18:37:05ZWhat database engine you are using, for example InnoDB or MyISAM?http://stackoverflow.com/questions/1757921/mysql-prevent-duplicate-records-in-table-via-indexComment by Juha Syrjälä on MySQL - Prevent duplicate records in table via index?Juha Syrjälä2009-11-18T18:36:11Z2009-11-18T18:36:11ZCan you post a few rows that you consider to be duplicates?http://stackoverflow.com/questions/1757363/java-hashmap-performance-optimization-alternativeComment by Juha Syrjälä on Java HashMap performance optimization / alternativeJuha Syrjälä2009-11-18T18:32:13Z2009-11-18T18:32:13ZWhat kind of equals() method you have for key objects?http://stackoverflow.com/questions/1757363/java-hashmap-performance-optimization-alternative/1757725#1757725Comment by Juha Syrjälä on Java HashMap performance optimization / alternativeJuha Syrjälä2009-11-18T18:02:15Z2009-11-18T18:02:15ZEven if the keys are random, you could use (key.hashCode() % 28) to select a map where to store that key-value.http://stackoverflow.com/questions/1757363/java-hashmap-performance-optimization-alternativeComment by Juha Syrjälä on Java HashMap performance optimization / alternativeJuha Syrjälä2009-11-18T17:52:44Z2009-11-18T17:52:44ZWhat are the contents of <i>a</i> -array? How long is the <i>a</i> array? Should you use more than 3 first elements?http://stackoverflow.com/questions/1741160/how-can-i-create-a-password/1741203#1741203Comment by Juha Syrjälä on how can I create a password?Juha Syrjälä2009-11-17T06:38:40Z2009-11-17T06:38:40ZYou are using the same random number to decide whether to use digits and characters and as a index to digit_group/char_group arrays. That is bit suspect. Also you should use much larger parameter to second RND.nextInt() call, something like MAX_INT, otherwise distribution of passwords may be skewed.