If you want download artifacts faster you need to configure maven setting.xml file.
Following these steps to enable PostgreSQL remote access.
It is no way to use service postgresql-9.4 initdb init PostgreSQL in CentOS7. I use following commends.
It is easy to dump database by using pg_dump commend.
This is an interview question. Not fully understood yet. ;(
The biggest advantage of the Bloom filter is that his space usage is very high. His disadvantage is that there may be misjudgments. Bloom filters return two values: elements may exist and elements definitely do not exist.
Benchmarking Redis is very easy. After completing the redis installation, there is a command tool in his directory to perform benchmark tests. Here is a simple example.
There are four different types of references in Java.
It is very simple to read files using the tool classes in guava. Here is the example.
It takes long time to clone a particularly large git repository. Use the following command to help you quickly clone a git repository.
There are several ways to install nginx in CentOS. I recommend you install it by yum command. Quick and safe.
In order to use share folder you have to install guest additions in VirtualBox. In this page I will show you how to install it. Click devices -> Install Guest Additions... and wait a minute. Open terminal in CentOS7. Before installing it you need make sure your environment is OK.
When you install CentOS in virtual machine you need to config double network adapters. One is for connecting internet another is for ssh. For more detail you can click VirtualBox CentOS static ip address.
I want to add basic http authentication in my personal wiki. I don't want to write any code to implement this function. After searching on the Internet, I found Nginx can do this by adding configuration. basic http authentication is very simple and unsafe. It adds user name and password information in http header which encoded by base64.
There are many unused code in my project. Whenever I see useless code, I will remove them. I think this is too inefficient. Fortunately, I found that IDEA can help me discover all the useless code in the project. In this blog I will show you how to use this feature.