• Resolved Anonymous User 17612203

    (@anonymized-17612203)


    The plugin is so great and usefull and works without issues!

    I just wet through the wp_posmeta table of my database to optimize performance and saw 2 points. The query for snap_ results in 4862 entries whille the query for snap_isRpstd results in 1227 entries.

    Why are there so many entries in the wp_postmeta?

    Is SNAP doing an entry for every repost? Let’s asume I repost 40 posts and do this once a month. Does this mean that I have 480 entries in the postmeta do to these reposts?

    How can I reduce the amount of entries in the wp_postmeta?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Run sql query with cron.

    
    DELETE FROM wp_postmeta WHERE meta_key = 'snap_isAutoPosted';
    DELETE FROM wp_postmeta WHERE meta_key = 'snapFB';
    DELETE FROM wp_postmeta WHERE meta_key = '_snap_forceSURL';
    DELETE FROM wp_postmeta WHERE meta_key = 'snapEdIT';
    DELETE FROM wp_postmeta WHERE meta_key = 'snap_MYURL';
    
    Thread Starter Anonymous User 17612203

    (@anonymized-17612203)

    Thanks… this may help for now. Why isn’t the plugin doing this?

    It’s probably because they didn’t design that much.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘wp_postmeta’ is closed to new replies.