4 مستودعات
Writing techniques that use disk-based buffering to handle datasets that exceed available system memory.
Distinct from Write Throughput Optimizations: Specific to memory-saving disk flushing for large files, rather than general database write throughput optimizations.
Explore 4 awesome GitHub repositories matching data & databases · Disk-Buffered Writing. Refine with filters or upvote what's useful.
This is an open-source, crowd-sourced wiki textbook that teaches Linux system programming in C. It covers the core operating system concepts of process management through the fork-exec-wait model, dynamic memory allocation using implicit free list heap allocators, inode-based file systems, inter-process communication via pipes and shared memory, POSIX threads with synchronization primitives, signal-based asynchronous notification, virtual memory with page table translation, and runtime diagnostics using Valgrind and GDB. The textbook distinguishes itself by providing practical, implementation
Mentions splitting file content across disks for throughput as a conceptual topic.
Raspotify هو مشغل صوتي بدون واجهة رسومية لأجهزة Linux يعمل كعميل Spotify Connect. يعمل كخدمة نظام في الخلفية، مما يسمح للأجهزة بالعمل كمستقبل صوت لاسلكي يمكن التحكم فيه عبر تطبيق Spotify الرسمي. تم تصميم الخدمة لأجهزة الكمبيوتر ذات اللوحة الواحدة وتتضمن تقليل الكتابة على القرص لتقليل تآكل بطاقة SD. يحقق ذلك عن طريق إعادة توجيه مخازن مؤقتة لمسارات الصوت إلى نظام ملفات في الذاكرة. يتضمن المشروع إمكانيات لتكوين جودة الصوت، بما في ذلك تعديلات معدل البت ومعدل العينة. كما يدير المصادقة من خلال التخزين المؤقت للرموز المحلية للحفاظ على اتصالات مستمرة دون الحاجة إلى عمليات تسجيل دخول متكررة.
Reduces physical disk writes by buffering track downloads in system memory rather than on the SD card.
ipscan هو مدقق شبكة عبر الأنظمة الأساسية وماسح ضوئي للشبكة يعتمد على Java يُستخدم لاكتشاف الأجهزة المتصلة بالشبكة وتصدير نتائج المسح. يعمل كماسح ضوئي لنطاق عناوين IP وماسح ضوئي لمنافذ TCP/UDP لتحديد المضيفين النشطين والخدمات المفتوحة على الشبكة. يتميز التطبيق ببنية جلب قائمة على الإضافات تسمح بدمج أدوات جلب بيانات مخصصة لاسترداد معلومات محددة عن الأجهزة أو البرامج من المضيفين المكتشفين. تغطي إمكانياته الأوسع اكتشاف الشبكة المحلية، وتدقيق منافذ الشبكة، وإنشاء مخزونات أصول الشبكة. يمكن للمستخدمين التفاعل مع البرنامج من خلال واجهة مستخدم رسومية ذات كثافة شاشة عالية أو عبر واجهة سطر أوامر للمسح الآلي.
Implements disk-buffered writing to export large scan datasets without causing memory overflow.
XlsxWriter is a library for generating spreadsheets in the XLSX format, functioning as an Excel workbook writer and file generator. It provides the capability to write data, apply cell formatting, and build complex layouts across multiple worksheets. The project distinguishes itself with a memory-optimized writing mode that flushes large datasets to disk row-by-row, enabling the creation of files exceeding 4 GB while minimizing RAM consumption. It also includes a specialized mechanism for embedding binary project files and digital signatures to enable VBA macros and signed scripts within work
Writes extensive datasets to disk without consuming excessive RAM through a specialized memory-optimized mode.