Is there any option to split the tables in more tables in different databases? The problem is that my the wp_posts table is to big and it takes a lot of time to show in the Dashboards... (more than 20 seconds). I tried the HyperDB but this plugin just can split the database to different databases but the tables remain the same... Example: wp_posts from database1 and wp_postmeta from database2, but I need to read and to write other ways...
Something like below
database1 --> wp_posts [from row 0--10000]
database2 --> wp_posts [from row 10001 to 20000]
etc...
I think that searching a single post between a lot of databases is not a big problem... there will be a great effect when searching through a hundred thousand of posts a specific query...
As my project idea is to make WordPress to handle a lot of products (posts), so analyzing a single table (wp_posts) takes a lot of time, but splitting this table to more tables in different databases (a databases will have it's own server) will show a very impressive result.
Is this possible or not?
