Close

Themehits

Download cQL – Best SQL (pdo – mysqli – mysql) Cache Class Nulled

 


cQL

This is a php coding that enables you to receive higher volume of data with your mysql inquires. You’ll be enable to decrease the load on your users.

How it is working?

When you use this coding in the inquiry field it will record the data as json format to the database in the first place. This record will be saved on memcache for a specific time set by you. If you do same inquiry during that specific time again the recorded data will be read and shown to user directly instead of getting data from database.

Sample explanation

For instance let’s assume that you have a video sharing site and getting data from database and shown to users. You’ll compulsorily do the same action again and again for each user and repeated mysql connection occurs. Instead of following this process again and again you can use this coding to keep your server less busy and get success easier.

Benchmarking Query

MySQL :
$query = mysql_query("SELECT * FROM table LIMIT 100");
$data = mysql_fetch_assoc($query);
// 1.2934579849243 sec with use only MySQL

MySQLi
$query = mysqli_query($con,"SELECT * FROM table LIMIT 100");
$data = mysqli_fetch_assoc($query);
// 1.2859179973602 sec with use only MySQLi

$data = $cql->get("SELECT * FROM table LIMIT 100");
// 0.00059390068054199 sec with use cQL

Requirements

  • PHP 5.x
  • memcahe extension
  • MySQL

Updated v.1.1


added pdo and mysqli queries on new class file.

include 'class.cache.php';
$cql = new cql;

use pdo : $cql->using("pdo");
use mysqli : $cql->using("mysqli");
use mysql : $cql->using("mysql");

or change class file :
public $using = "mysql"; // mysql - mysqli - pdo

[eltd_button size=”huge-full-width” type=”outline” text=”Download & Demo Links” custom_class=”#” icon_pack=”font_awesome” fa_icon=”” link=”” target=”_blank” color=”” hover_color=”” background_color=”” hover_background_color=”” border_color=”” hover_border_color=”” font_size=”” font_weight=”” margin=””]

Demo = cQL – Best SQL (pdo – mysqli – mysql) Cache Class
[eltd_button size=”huge” type=”” text=”Full Live Demo” custom_class=”” icon_pack=”font_awesome” fa_icon=”fa-laptop” link=”https://codecanyon.net/item/cql-best-sql-pdo-mysqli-mysql-cache-class/10102363″ target=”_blank” color=”” hover_color=”” background_color=”” hover_background_color=”” border_color=”” hover_border_color=”” font_size=”” font_weight=”” margin=””]

Kindly Note: We update new contents like WordPress Themes, Plugins, PHP Scripts everyday. But remember that you should never use this items in a commercial website. All the contents posted here for development & testing purpose only. We’re not responsible for any damage, use at your own RISK! We highly recommend to buy cQL – Best SQL (pdo – mysqli – mysql) Cache Class from the The Developer ( soyturk ) website. Thank you.
Download = cQL – Best SQL (pdo – mysqli – mysql) Cache Class-[Updated].zip



Ads Blocker Image Powered by Code Help Pro

Ads Blocker Detected!!!

We have detected that you are using extensions to block ads. Please support us by disabling these ads blocker.