Thu.Jan 17, 2019

article thumbnail

How To Connect To Your MongoDB Deployments Using Robo 3T GUI

Scalegrid

Robo 3T (formerly Robomongo) is a popular desktop graphical user interface (GUI) for your MongoDB hosting deployments that allows you to interact with your data through visual indicators instead of a text-based interface. This open source tool has cross-platform support and actually embeds the mongo shell within its interface to provide both shell and GUI-based interaction.

Database 178
article thumbnail

Using Parallel Query with Amazon Aurora for MySQL

Percona

Parallel query execution is my favorite, non-existent , feature in MySQL. In all versions of MySQL – at least at the time of writing – when you run a single query it will run in one thread, effectively utilizing one CPU core only. Multiple queries run at the same time will be using different threads and will utilize more than one CPU core. On multi-core machines – which is the majority of the hardware nowadays – and in the cloud, we have multiple cores available for use.

Cache 48
article thumbnail

Finding Compiler Bugs With C-Reduce

O'Reilly Software

Support for a long awaited GNU C extension, asm goto, is in the midst of landing in Clang and LLVM. We want to make sure that we release a high quality implementation, so it’s important to test the new patches on real code and not just small test cases. When we hit compiler bugs in large source files, it can be tricky to find exactly what part of potentially large translation units are problematic.

C++ 40