[How to Encrypt and Decrypt Strings in JAVA using Standard Java JCE library] Cipher : Java Glossary

http://mindprod.com/jgloss/cipher.html Here’s how to encrypt and decrypt a message using CipherOutputStream/ CipherInputStream The methods used are all part of Sun’s JCE. Sun’s JCE documenation is all but useless. You pretty well have to Google the web to find sample code to use these methods for particular algorithms and block modes. Pay attention to string encoding/decoding and padding issues.

[How to Encrypt and Decrypt Strings in JAVA using Standard Java JCE library] Cipher : Java Glossary

http://mindprod.com/jgloss/cipher.html Here’s how to encrypt and decrypt a message using CipherOutputStream/ CipherInputStream The methods used are all part of Sun’s JCE. Sun’s JCE documenation is all but useless. You pretty well have to Google the web to find sample code to use these methods for particular algorithms and block modes. Pay attention to string encoding/decoding and padding issues.

Venu Anuganti Blog » Notes on scaling heavy concurrent writes in real time /InnoDB

http://venublog.com/2008/04/17/notes-on-scaling-heavy-concurrent-writes-in-real-time/ notes about how to scale innodb writes. to summ it up: shard, use int as PKEY (convert hash to int using base-convert, batch lots of write into one trx. / nothing special