Introduction :
Years ago an enterprising company named Caucho decided to write the "most reliable application server in the Open Source market." Their core product is a Java EE compliant Web server they call Resin, and at its heart is Quercus: a fast PHP interpreter written in cross-platform Java.
What is Quercus :
Quercus is pioneering a new mixed Java/PHP approach to web applications and services....
Tuesday, October 8, 2013
Friday, September 20, 2013
Snaq DBPool Connection Pool : Java Connection Pooling Part - 2
Written by Unknown
on Friday, September 20, 2013
in Connection Pool, Database, DBPool, J2EE, Java, Log4J
with
2 comments
What is Connection Pooling?
One of the most expensive database-related tasks is the initial creation of the connection. Once the connection has been made the transaction often takes place very quickly. A connection pool maintains a pool of opened connections so the application can simply grab one when it needs to, use it, and then hand it back, eliminating much of the long wait for the...
Thursday, August 29, 2013
Tomcat JDBC Connection Pool : Java Connection Pooling Part - 1
What is Connection Pooling?
One of the most expensive database-related tasks is the initial creation of the connection. Once the connection has been made the transaction often takes place very quickly. A connection pool maintains a pool of opened connections so the application can simply grab one when it needs to, use it, and then hand it back, eliminating much of the long wait for the creation...
Thursday, August 22, 2013
Export or Backup MySQL Database in separate file using Shell Script
Written by Unknown
on Thursday, August 22, 2013
in Database Backup, MySQL, Shell Script
with
No comments
Live projects database are always critical for Clients and Companies and if the development phase is still in progress than you need to take backup of database on daily basis for safety concerns. i came across with the same situation and for that i've created a simple script which will take backup of your database.
it will export table wise separate sql file rather than one big SQL file. you can...
Monday, August 19, 2013
Push Notification for iOS and Android with RESTlet Framework
Written by Unknown
on Monday, August 19, 2013
in Java, PushNotification, REST, Web Service
with
4 comments
Introduction :
Push notifications let your application notify a user of new messages or events even when the user is not actively using your application. On Android devices, when a device receives a push notification, your application's icon and a message appear in the status bar. When the user taps the notification, they are sent to your application. At iOS devices, it will appear as an alert...
Friday, August 2, 2013
Import MySQL .sql script from Java
Sometimes it is nice to programmatically run .sql scripts on a MySQL database using Java. This is easily achieved by using a simple ScriptRunner Class from the iBatis apache project. iBatis project is having it's own dependencies and if you want to check that class you need to add all the dependency. To overcome this issue i came across with a Slightly modified version of the com.ibatis.common.jdbc.ScriptRunner...
Tuesday, June 4, 2013
Configure Apache Cassandra (Mac OS X)
Apache Cassandra Configuration Steps for Mac OS X:
1. Download And Install Apache Cassandra :
Download Apache Cassandra : http://cassandra.apache.org/download/
Now check weather JAVA_HOME and PATH environment variables has been set or not, if not then put this command in terminal
export...