May 112020
 

use-package is an Emacs package which allows packages to be loaded declaratively. It’s been around for ages and I’ve seen it used in other people’s configurations, but I’ve only recently paid some real attention to it. I wish I’d learned how to use it sooner – it’s really improved my Emacs config. Let’s look at an example: (use-package magit :bind ((“C-x g” . magit-status) (“C-x C-g” . magit-status))) Read more… (3 min remaining to read)

External feed Read More at the Source: http://menno.io/posts/use-package/

 2020-05-11  Comments Off on “Menno’s Musings”: Better Emacs Config: use-package Planet Python
May 112020
 

Vacuum is one of the sub-systems in PostgreSQL which gets improved with each release.  I have checked past five releases and each has quite a few improvements for vacuum.  Following the trend, there are a number of improvements in vacuum in the upcoming PostgreSQL release (v13) which are covered in this blog.Improvement-1———————Vacuum will be allowed to process indexes in parallel. This means it can leverage multiple CPUs in order to perform index cleanup. This internally…

External feed Read More at the Source: https://postgr.es/p/4Mo

 2020-05-11  Comments Off on Amit Kapila: Improved (auto)vacuum in PostgreSQL 13 Planet PostgreSQL