While working on the ethereum , I come out with the issue of out of memory because of multiple transaction execution concurrently . The main reason was , i was unlocking account of that user every time which take too much of memory , if i do contract function execute (transaction) without unlocking the account in code and unlock account in geth by
personal.unlockAccount("address","password")
and then run transaction it execute smoothly over 500 transaction / sec . How can i unlock account everytime or give me better solution how to unlock account so that i can overcome with out off memory problem ?
--passwordin http://ethereum.stackexchange.com/questions/9178/how-to-call-library-function-from-a-contract-error-the-contract-code-could/9181#9181 – BokkyPooBah Jan 16 '17 at 05:50geth --unlock firstaddress,secondaddress,.. --password <passwordFile>will unlock all address written here and If i want the newAddress also unlock what should i do so that it will we also get unlock . – Himanshu sharma Jan 16 '17 at 06:31