Articyl — save articles, subscribe to RSS feeds, listen with AI narration, and send everything to your e-reader. All your content in one place.
Try it free →
Prefer reading on your Kindle or reMarkable?
Articyl cleans up web articles and delivers them as beautifully formatted PDFs or EPUBs straight to your e-reader.
Send articles to your e-reader →
Still juggling Pocket, Feedly, and a podcast app?
Articyl combines read-later, RSS feeds, podcasts, and AI narration in one distraction-free app.
Simplify your reading →
When SQL Server reads pages it stores them in an area of memory called the buffer cache, things like memory pressure can then cause items to get removed from the buffer cache. I wrote the below script to check what’s in the cache at any given time, it’s scoped to the database you are running it in…
SELECT
o . name [ Table ],
i . name [ Index ],
( COUNT ( * ) * 8 ) / 1024 [ SizeMB ]
FROM
sys . allocation_units au
INNER JOIN sys . dm_os_buffer_descriptors bd ON au . allocation_unit_id = bd . allocation_unit_id
INNER JOIN sys . partitions p ON
/* allocation_unit types :
0=Dropped,
1 = In Row,
2=LOB,
3=Row-Overflow data*/
( au .[ type ] IN ( 1 , 3 ) AND au . container_id = p . hobt_id )
OR ( au .[ type ] = 2 AND au . container_id = p . partition_id )
INNER JOIN sys . objects o ON p . object_id = o . object_id
LEFT JOIN sys . indexes i ON i . object_id = o . object_id AND p . index_id = i . index_id
WHERE
o . type NOT IN ( 'S' , 'IT' )
GROUP BY
i . name ,
o . name
I find this really useful when looking at things like buffer hit ratios to then get an idea as to what in the buffer cache could be causing memory pressure.
Your content, your way.
Articyl lets you save web articles, subscribe to RSS feeds and podcasts, listen to anything with AI narration, and deliver it all to your Kindle, Kobo, or reMarkable. One app for everything you read.
Try Articyl free →
Turn any article into a podcast.
Articyl's AI narration reads articles aloud so you can listen while you commute, work out, or do chores. Save from anywhere, listen everywhere.
Start listening →
Read long-form on the screen that matters.
Articyl strips the clutter from web articles and delivers clean, formatted PDFs or EPUBs to your Kindle, Kobo, or reMarkable — on a schedule or on demand.
Deliver to your e-reader →
One place for everything you read and listen to.
RSS feeds, saved articles, podcasts, highlights, and notes — Articyl keeps it all together with cross-device sync and a distraction-free reader.
Try Articyl free →