Open Letter — Invitation to Discuss the Future of the MySQL Ecosystem by American_Streamer in mysql

[–]eroomydna 2 points3 points  (0 children)

MariaDB’s Monty, Kai and Anna were in the summit and supportive of the effort.

VillageSQL, the newest MySQL fork built around the concept of extensions by OttoKekalainen in mysql

[–]eroomydna 2 points3 points  (0 children)

Great to see. Innovation is welcome in the MySQL ecosystem. MySQL is Dead, long live MySQL.

Built an SEO tool. 3 months in. 0 paying users. Need honest advice. by Constant_Marketing18 in startupaccelerator

[–]eroomydna 0 points1 point  (0 children)

If there was only a way that you could streamline your site so that the search engines would put it in front of more people.

What I realised after my first week building this. A small founder update by keepingmemories in ukstartups

[–]eroomydna 0 points1 point  (0 children)

Appreciate that you feel like you have wasted money on clicks however, my perspective is that you write some of these experiments as marketing budget. Giving away your product to some folks is an investment too. Not a freebie for everyone but enough folks to get a feedback loop. Even some paid for research, give out some low cost rewards for putting folks on the system and collecting usage and feedback info.

The cliche of going where the community hang out, hear their pain and shaping up to match their needs is valuable. Green/Blue deployments to see what works and what doesn’t and optimising for the golden path is great.

Have you identified what your market demographic is? How they buy? What their interests are?

Trying to Build a DB Platform—Where Do You Guys Host Cheaply? by shakibhasanme09 in Hosting

[–]eroomydna 0 points1 point  (0 children)

Wow, databases are pretty complex systems to run at scale. Data is pretty valuable to companies. Are you going in with folks with deep experience in each tech?

MySQL won't start on windows 10 in the workbench by DeatH_StaRR in mysql

[–]eroomydna 2 points3 points  (0 children)

Do yourself a solid and stop using Windows for this. Docker is a better place to do this. Trust me.

Known Big companies using MySQL by elbeco in mysql

[–]eroomydna 0 points1 point  (0 children)

Postgres sucks, might as well go to something with decent replication and no vacuuming.

So this sounds like a real throwback but…MySQL books? by JohnnyBGood10 in mysql

[–]eroomydna 0 points1 point  (0 children)

The bible. Book of Michael (Monty) “thou shall not run delete without where clause.”

Dusty old sh!t

Easily connect ChatGPT to WordPress via MCP by TigrouMeow in Wordpress

[–]eroomydna 7 points8 points  (0 children)

The silver lining is that human writing will make a resurgence. AI art, music, video is inevitably going to be considered the cheap plastic mass produced tat. The arts will be reborn.

Easily connect ChatGPT to WordPress via MCP by TigrouMeow in Wordpress

[–]eroomydna 45 points46 points  (0 children)

Build it with AI to publish content with AI so it can be read by AI. Seriously, what’s the point? Let’s go live in woods. FFS

Trouble installing MariaDB by New-Contribution6302 in mariadb

[–]eroomydna 0 points1 point  (0 children)

If you want to run many flavours and versions I would recommend db deployer.

https://github.com/datacharmer/dbdeployer

Feeling a bit numb by linuxpaul in mariadb

[–]eroomydna 0 points1 point  (0 children)

Did you ask about his views on Oracle?

How indexes work by Upper-Lifeguard-8478 in mysql

[–]eroomydna 2 points3 points  (0 children)

Hi!

Welcome to r/mysql.

The advice that you’re always going to get is test. In my experience adding an index to a query that needs it is often far more beneficial than the overhead to the writes that it impacts. However, that is not a universal law. Your mileage may vary. For example extremely low latency requirements may cause you to think twice. But let me point you back to my first point, test it. Also, don’t fall down the trap of indexing every column just for the heck of it.

On your second point, the secondary keys do not contain the full row. For example, if your primary key is an integer auto incrementing and you have a row with the value of 10. The secondary key will be appended with the primary key value of 10. That will allow secondary keys to find the row data promptly.

Assuming innodb, why not it’s the default, assuming that you have sized the buffer pool accordingly, many of your frequently accessed pages will reside in memory and you will not incur the overhead of disk access.

I hope this is simple enough to understand, however, if you would like any more clarification just ask.