Archive for the 'string' Category

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

Sunday, October 2nd, 2011

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…

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

Sunday, October 2nd, 2011

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…

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

Saturday, April 19th, 2008

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