Логотип блога Никиты Киселева nikitakiselev.ru
  • Drupal 7
  • jQuery
  • Разработка под Drupal 7
  • Codeigniter 2.x
  • CSS
  • Обо мне
Оптимизация производительности MySQL с помощью битовых масок (bitmask)

Оптимизация производительности MySQL с помощью битовых масок (bitmask)

Добавить комментарий
10.12.2017

Когда дело доходит до оптимизации базы данных (mysql), наиболее распространенной практикой является нормализация структуры базы данных. В целом это хорошая идея, но когда дело доходит до производительности, полностью нормализованная база данных не всегда является лучшим решением.

Читать далее...

Cброс пароля mysql через командную строку

Добавить комментарий
29.01.2017

Step 1: Stop MySQL Service. sudo service mysql stop Step 2: Kill all running mysqld. sudo killall -9 mysqld Step 3: Starting mysqld in Safe mode. sudo mysqld_safe --skip-grant-tables --skip-networking & Step 4: Start mysql client mysql -u root Step 5: After successful login, please execute this command to change any password. FLUSH PRIVILEGES; Step 6: You can update mysql root password . UPDATE mysql.user SET...

Читать далее...

Understanding the Factory Method Design Pattern (Перевести)

Добавить комментарий
21.12.2016

Building things can be tough when you can’t anticipate what type of objects you’ll need to create or how to create them. Take for example a factory which manufactures a large number of products. Each product can be made up of any number of components in their inventory. The workers know what’s in the inventory but don’t necessarily know beforehand what kind of products they will be making. The Factory Method design pattern can be applied to similar situations in programming where you have a set...

Читать далее...

GIT

Добавить комментарий
09.12.2016

$ git commit -m "Something terribly misguided" $ git reset HEAD~ << edit files as necessary >> $ git add ... $ git commit -c ORIG_HEAD

Читать далее...

Сортировка по related table в Eloqunt Laravel.

Добавить комментарий
08.12.2016

Найден следующий костыль:

Читать далее...
  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • ...
  • 16
  • 17
  • »
© 2025 Блог Никиты Киселева