What are you usin for wordpress

Dear Sir
i want to use cache system for wordpress.
i saw posts about fastcache, and opcode cache.

rite now what are you using???
i just want to use you default combination.
Regards

@waseem
We are using Wordpress With Nginx’s Fastcgi Cache Module,
You can use that, by installing EasyEngine and using following commands to create site:
ee site create example.com --wpfc

Dear Sir
i was checking a post about redis cache and Rahul sir was asking that he will check fast cache and redis . Are you suggesting fastcache over redis??

and I am using Direct admin as control panel and here is my nginx.conf file tell me if fastcache is already enabled as in txt it is showing.
server

{  
	listen 198.111.000.111:80;  
	server_name domain.com  www.domain.com ;  
	access_log /var/log/nginx/domains/domain.com.log;  
	access_log /var/log/nginx/domains/domain.com.bytes bytes;  
	error_log /var/log/nginx/domains/domain.com.error.log;  
	root /home/user/domains/domain.com/public_html;  
	index index.php index.html index.htm;  
location / {  
                try_files $uri $uri/ /index.php?q=$uri&$args;  
        }  
		# use fastcgi for all php files  
		location ~ \.php$  
		{  
			  
			fastcgi_split_path_info ^(.+\.php)(/.+)$;  
			include /etc/nginx/fastcgi_params;  
			fastcgi_index index.php;  
			fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;  
			include /etc/nginx/nginx_limits.conf;  
			if (-f $request_filename)  
			{  
				fastcgi_pass unix:/usr/local/php54/sockets/user.sock;  
			}  
		}

And i have to use PHP 5.5 ,means i can use 5.5 without problem???

Regards

plus than i have no need of w3total cache??? all cache will be done by fast cache???
and as i have different installation directories nginx helper will not work for me, i have to change its settings???

Regards

Sir i am still waiting for your message

We mostly used nginx fastcgi cache for page caching

and w3 total cache to enable database/object caching using memcache

To used nginx fastcgi cache your nginx must have fastcgi_purge module
Refer: https://rtcamp.com/wordpress-nginx/tutorials/single-site/fastcgi-cache-with-purging/#prerequisites