% No Sync | % Sync | AVG | time 1 | time 2 | time 3 | time 4 | time 5 | |
---|---|---|---|---|---|---|---|---|
No Sync | - | 40 | 21.31 | 21.74 | 20.85 | 21.48 | 20.99 | 21.51 |
No Sync +Cache | 96 | 37 | 20.5 | 20.63 | 20.93 | 20.54 | 19.88 | 20.55 |
No Sync +Fixture | 60 | 24 | 12.76 | 12.55 | 12.86 | 12.64 | 12.79 | 13 |
No Sync +Cache +Fixture | 56 | 22 | 11.92 | 11.94 | 11.86 | 11.9 | 11.91 | 11.99 |
Sync | 252 | - | 53.83 | 54.21 | 53.43 | 53.53 | 54.22 | 53.8 |
Sync +Cache | 115 | 46 | 24.52 | 25.53 | 24.22 | 24.15 | 24.3 | 24.56 |
Sync +Fixture | 209 | 83 | 44.55 | 44.48 | 44.98 | 44.49 | 44.65 | 44.17 |
Sync +Cache +Fixture | 75 | 30 | 15.98 | 15.81 | 16.03 | 16.16 | 15.88 | 16.03 |
Since modern.ie released vagrant boxes, it' no longer necessary to manually import the ova file to virtualbox, as mentioned here.
However, the guys at modern.ie didn't configured the box to work with WinRM. This how-to addresses that, presenting steps to proper repackage these boxes, adding WinRM support. Additionally configures chocolatey package manager and puppet provisioner.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
thrift_service: | |
constructor: NewThriftService | |
arguments: | |
- "%visit_handler%" | |
- "%event_handler%" | |
- "%flash_handler%" | |
- "%track_handler%" | |
- "%mark_handler%" | |
- "localhost:9090" | |
- binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################### General #################################### | |
## Sentry server name. This is the base URL that Cyclops will use to send | |
## requests to sentry. | |
## Defaults to: localhost:9000 | |
SENTRY_BASE_URL = '{{ SENTRY_HOST_HERE }}' | |
################################################################################ | |
################################# Performance ################################## |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Current script works with branches by next standars: | |
# dev-{YYYYmmdd}-{surname}-N{ticket number}-{ticket name} | |
# dev-{YYYYmmdd}-{surname}-{ticket number}-{ticket name} | |
# | |
# {YYYYmmdd} - branch creation date | |
# {surname} - authors surname | |
# {ticket number} - number of ticket in your bug tracker | |
# {ticket name} - short ticket description, words could be separated by - or _ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Поведение для отслеживания изменений. | |
* | |
* **ВНИМАНИЕ!!!** | |
* Данное поведение не работает с моножественными действиями: update и delete, будьте внимательны. | |
* | |
* ### Подготовка: | |
* | |
* - Необходимо создать такую же таблицу с суфиксом **_history**, как отслежуемая, но с дополнительными полями: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Поведение для стандартизированной работы с переводами. | |
* | |
* Подготовка. | |
* Создаем основную модель. | |
* | |
* - **ДОЛЖНА НЕ** иметь переводимых полей. | |
* - **ДОЛЖНА** иметь поле id. | |
* - Основная модель не обязана иметь прописанную связь с моделью переводов. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#============================================================================= | |
# | |
# FILE: list_dates.sh | |
# | |
# USAGE: list_dates.sh start_date end_date | |
# | |
# DESCRIPTION: List the dates between a given range of dates. | |
# | |
#============================================================================= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Необходимо задать три массива: PORTS, PROXY_HOSTS и HOSTS. | |
# При подключении будут созданы туннели PROXY_HOSTS[id]:PORTS[id] -> HOSTS[id]:3306. | |
# HOSTS - массив хостов, к которым будет выполнятся ssh подключение (рекомендую использовать ssh-ключи). | |
PORTS=('33061') | |
PROXY_HOSTS=('127.0.0.1') | |
HOSTS=('external.host') |