Skip to content

TienLe.sol

  • Home
  • AI
  • TechnologyExpand
    • NodeJS
    • PHP
    • React
    • CSS3
    • Single Sign-On
    • Big DataExpand
      • NOSQL
    • DatabaseExpand
      • MySQL
      • PostgreSQL
  • Enterprise
  • PerformanceExpand
    • Large Scale
    • Front-end performance
  • GeneralExpand
    • Web Servers
    • Linux
    • Host Promo
  • About
TienLe.sol
  • MySQL

    Some notes on MySQL index query

    ByConan July 26, 2013July 26, 2013

    Some rules we should remember when doing MySQL index query: Index uses B-TREE, so be sure we understand how B-Tree works. Index is left-most, so if there is (c1, c2, c3) index, then query WHERE c1 = 1 AND c2 = 2 does use index, but not WHERE c2 = 2 When considering indexing, remember the following…

    Read More Some notes on MySQL index queryContinue

  • MySQL

    Upgrading from MySQL 5.1 to MySQL 5.5 / 5.6

    ByConan July 25, 2013

    Upgrading from MySQL 5.1 to MySQL 5.5 / 5.6 when there is existing data is quite head-cache and scary story. Some notes might also help you when do upgrading: After upgrading, we need to run mysql_upgrade. In order to do that, we must have the mysql service running[bash]mysqld –skip-grant-tables –user=mysql mysql_upgrade -u root -p’PASSWORD'[/bash] If mysql…

    Read More Upgrading from MySQL 5.1 to MySQL 5.5 / 5.6Continue

  • MySQL

    MySQL Query Optimization using UNION

    ByConan July 25, 2013July 25, 2013

    Every developers might also understand how important index is when performing query but not of all do really care about how MySQL Query Optimization works. In the most cases, developers will think that index will work as it is and do not check in detail how index really work for a specific cases. The fact…

    Read More MySQL Query Optimization using UNIONContinue

  • Database

    Install Percona in CentOS

    ByConan July 19, 2013July 19, 2013

    This tutorial helps you install percona server in CentOS as a replacement for MySQL server. According to Percona, Their “MySQL service clients and open source software users achieve breakthrough results with MySQL: cost savings, faster time to market, higher system up-time, and long-term scalability. MySQL performance is a focus for all that we do”. If…

    Read More Install Percona in CentOSContinue

  • MySQL

    Reset MySQL Root Password in CentOS

    ByConan July 19, 2013January 25, 2017

    In your development work, there are sometimes you forgot the mysql root password so you cannot make any system-level change to the mysql server. This quick tutorial tells you how to reset mysql root password in CentOS. First, need to stop MySQL:[bash]root# service mysqld stop[/bash] Then, start MySQL in safe mode:[bash]root# mysqld_safe –skip-grant-tables &[/bash] Log…

    Read More Reset MySQL Root Password in CentOSContinue

  • General

    PHP Tutorials :: Reflection in PHP

    ByConan July 16, 2013July 18, 2013

    Reflection is generally defined as a program’s ability to inspect itself and modify its logic at execution time. In less technical terms, reflection is asking an object to tell you about its properties and methods, and altering those members (even private ones). In this lesson, we’ll dig into how this is accomplished, and when it…

    Read More PHP Tutorials :: Reflection in PHPContinue

  • PHP

    Laravel 4 – Beginner’s notes

    ByConan July 14, 2013July 18, 2013

    You might ask: What is Laravel (and Laravel 4)? In short, it is the PHP frameworks for web artisans. This contains notes for beginners. We can generate tables for application by utilizing the migration feature with artisan. For example, in order to setup a user table, we use parameters –table and –create:[bash]php artisan migrate:install php artisan migrate:make…

    Read More Laravel 4 – Beginner’s notesContinue

  • Linux

    Perform Incremental Backups With Rsync

    ByConan July 12, 2013May 29, 2018

    Backing up your information is very important to you, or at least it should be. One of my college professors once told me, “It is not a question of if your hard drive will crash; it is when your hard drive will crash.” Rsync is a tool that allows you to keep two distinct directories in sync, either locally (two…

    Read More Perform Incremental Backups With RsyncContinue

  • General

    Some notes when developing an IPB based website with big data

    ByConan July 4, 2013July 4, 2013

    Recent time, I supporting a development team on customizing an intensive social network website with integrated IPB forum software. The main problems that the team faced are (1) very slow on accessing the website, and (2) the db is often crashed in the peak time (about 1000 online users). There are some checklists which might help…

    Read More Some notes when developing an IPB based website with big dataContinue

  • General

    Popular SVN commands used when deploying a website

    ByConan July 4, 2013October 19, 2014

    This tutorial mentions about common tasks that we need to do when deploying a website to server using subversion (SVN commands). This assumes that we understand how to install svn client to the server, and understand some basic commands in according operating systems (Windows, Linux, etc.) Checkout a new project Cause: You want to deploy a…

    Read More Popular SVN commands used when deploying a websiteContinue

Page navigation

Previous PagePrevious 1 … 10 11 12 13 14 … 18 Next PageNext

© 2026 TienLe.sol

  • Home
  • AI
  • Technology
    • NodeJS
    • PHP
    • React
    • CSS3
    • Single Sign-On
    • Big Data
      • NOSQL
    • Database
      • MySQL
      • PostgreSQL
  • Enterprise
  • Performance
    • Large Scale
    • Front-end performance
  • General
    • Web Servers
    • Linux
    • Host Promo
  • About