l3ku / ultimate-guitar-tabs-chords

DEPRECATED: A WordPress plugin that fetches tabs and chords from Ultimate Guitar
GNU Lesser General Public License v3.0
5 stars 0 forks source link

Redesign the plugin workflow #3

Open l3ku opened 5 years ago

l3ku commented 5 years ago

It is very inefficient to make multiple external site requests when users are loading a site. Although the content is cached for an hour, populating the cache takes an unbearable amount of time. A better workflow would be to populate the content into the WP database via a WP admin GUI, with the database having tables for artists content and the entries of the artist. Queries could be done against this data instead of having to access the API every time a entry parameter is changed.

The plugin could work i.e. in the following way:

l3ku commented 5 years ago

WIP at https://github.com/l3ku/ultimate-guitar-tabs-chords/tree/feature/use-db.