Skip to content
This repository was archived by the owner on Jun 15, 2022. It is now read-only.

Commit 277c9a6

Browse files
committed
Merge branch 'develop' into fix/woocommerce-bootstrapping
2 parents 7076192 + e437c0b commit 277c9a6

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

.travis.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,22 @@ dist: trusty
44
language: php
55

66
notifications:
7-
email:
8-
on_success: never
9-
on_failure: change
10-
11-
branches:
12-
only:
13-
- master
7+
email: false
148

159
cache:
1610
directories:
1711
- $HOME/.composer/cache
1812

1913
matrix:
2014
include:
15+
- php: 7.2
16+
env: WP_VERSION=trunk
2117
- php: 7.1
2218
env: WP_VERSION=latest
2319
- php: 7.0
2420
env: WP_VERSION=latest
2521
- php: 5.6
2622
env: WP_VERSION=latest
27-
- php: 5.6
28-
env: WP_VERSION=trunk
2923
#- php: 5.6
3024
# env: WP_TRAVISCI=phpcs
3125
- php: 5.3

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
# WooCommerce Order Tables
2+
3+
[![Build Status](https://travis-ci.org/liquidweb/woocommerce-order-tables.svg?branch=fix%2Ftravis-config)](https://travis-ci.org/liquidweb/woocommerce-order-tables)
4+
25
Managed WooCommerce plugin for Liquid Web.
36

47
## Background & Purpose
58
WooCommerce even with CRUD classes in core, still uses a custom post type for orders. By moving orders to use a custom table in the site database, will improve store orders performance.
69

710
### Here's how
8-
WooCommerce saves more than 40 custom fields per order— including those from plugins— inside the wp_postmeta table. If your store gets ~40 per day, that's 1600 rows (40 * 40) added to the postmeta table in a day.
11+
WooCommerce saves more than 40 custom fields per order— including those from plugins— inside the wp_postmeta table. If your store gets ~40 per day, that's 1600 rows (40 * 40) added to the postmeta table in a day.
912

1013
In one month that number can be 48,000 new rows (1600 * 30) added to your postmeta table. The more rows in a table the longer it will take for a query to execute. WooCommerce Order Tables creates a new table for WooCommerce orders which would cut that number tremendously by making each custom field into a column so that 1 order = 1 row.
1114

0 commit comments

Comments
 (0)