awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 مستودعات

Awesome GitHub RepositoriesPartial Parse Caching

Storing intermediate parsing results for specific text segments to avoid redundant analysis.

Distinct from Performance Caching Systems: Distinct from Performance Caching Systems: specifically targets the caching of parsed linguistic segments rather than general memory management.

Explore 6 awesome GitHub repositories matching data & databases · Partial Parse Caching. Refine with filters or upvote what's useful.

Awesome Partial Parse Caching GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • spencermountain/compromiseالصورة الرمزية لـ spencermountain

    spencermountain/compromise

    12,125عرض على GitHub↗

    Compromise is a natural language processing library and rule-based text parser designed to analyze unstructured text. It functions as a toolkit for identifying parts of speech, linguistic patterns, and semantic meaning, while providing specialized engines for named entity recognition and the parsing of temporal and numeric data. The project is distinguished by its linguistic morphological engine, which can conjugate verbs across different tenses and inflect nouns and adjectives. It further allows for linguistic model customization through a plugin system that enables the extension of lexicons

    Stores previously parsed sentences and processes only modified segments to maintain performance.

    JavaScriptnamed-entity-recognitionnlppart-of-speech
    عرض على GitHub↗12,125
  • norvig/paip-lispالصورة الرمزية لـ norvig

    norvig/paip-lisp

    7,465عرض على GitHub↗

    This project is a comprehensive Lisp AI implementation library that provides reference implementations for various artificial intelligence paradigms and symbolic algorithms. It functions as a multi-purpose toolkit containing a logic programming engine, a natural language processing suite, and a symbolic mathematics toolkit. The library is distinguished by its diverse architectural frameworks, including a Prolog-style execution engine that uses unification and goal-driven backtracking, and a system for simulating human decision-making through expert system shells and certainty factors. It also

    Caches rule lookup results and partial parses to accelerate the processing of complex grammars.

    Common Lisp
    عرض على GitHub↗7,465
  • sebastienros/jintالصورة الرمزية لـ sebastienros

    sebastienros/jint

    4,653عرض على GitHub↗

    Jint is a JavaScript interpreter for the .NET ecosystem that executes code without requiring a browser or Node.js environment. It is an ECMAScript compliant engine that provides a sandboxed scripting runtime with configurable limits on memory and time to run untrusted code. The engine features a native object bridge that exposes .NET classes and methods to JavaScript scripts for bidirectional data exchange. To reduce overhead during repeated executions, it utilizes a precompiled script cache to store parsed JavaScript in memory. The project covers asynchronous script execution and promise ha

    Stores pre-parsed scripts in memory to eliminate redundant parsing overhead during repeated executions.

    C#
    عرض على GitHub↗4,653
  • facebook/buck2الصورة الرمزية لـ facebook

    facebook/buck2

    4,360عرض على GitHub↗

    Buck2 هي أداة بناء monorepo قابلة للبرمجة ونظام بناء محكم (hermetic) مصمم لإدارة المشاريع واسعة النطاق ذات الرسوم البيانية المستهدفة المعقدة وتبعيات اللغات المتعددة. تعمل كإطار عمل للتنفيذ عن بُعد ومحلل للرسم البياني للتبعية، وتوفر محرك تخزين مؤقت للقطع الأثرية (artifact) لضمان نتائج بناء قابلة لإعادة الإنتاج ومتسقة عبر بيئات مختلفة. يتميز النظام بمحرك حساب تزايدي يعيد حساب العقد المحددة فقط في الرسم البياني للتبعية التي تم إبطالها بسبب التغييرات. ويستخدم تخزيناً قابلاً للعنونة بالمحتوى لتخزين نتائج البناء مؤقتاً ويدعم سباق التنفيذ عن بُعد، حيث يتم تنفيذ إجراءات البناء محلياً وعن بُعد في وقت واحد لإرجاع النتيجة الأسرع. يغطي سطح قدراتها أتمتة البناء متعدد اللغات، وتجريد سلسلة الأدوات، والتكوين القائم على القيود لإدارة متغيرات البناء عبر المنصات. يتضمن المشروع أيضاً أدوات مراقبة البناء لاستبطان الرسم البياني واكتشاف التغييرات، بالإضافة إلى آليات التحكم في الوصول لتقييد رؤية الهدف.

    Stores operation outputs based on attributes and platform to avoid redundant computations across different build commands.

    Rust
    عرض على GitHub↗4,360
  • phpdocumentor/phpdocumentorالصورة الرمزية لـ phpDocumentor

    phpDocumentor/phpDocumentor

    4,332عرض على GitHub↗

    phpDocumentor is a PHP API documentation generator and source code analyzer that transforms PHP files and DocBlocks into structured HTML API references. It functions as a static site generator and an automatic documentation tool designed to synchronize technical documentation with code changes. The project distinguishes itself by acting as a UML diagram generator, producing class and architectural graphs via PlantUML based on source analysis. It also supports technical manual authoring, rendering hand-written guides in Markdown and ReStructuredText alongside the automatically generated API re

    Caches fully parsed abstract syntax trees to avoid redundant parsing of PHP source files.

    PHPdocblockdocblocksgraphviz
    عرض على GitHub↗4,332
  • nolanlawson/optimize-jsالصورة الرمزية لـ nolanlawson

    nolanlawson/optimize-js

    3,734عرض على GitHub↗

    Optimize-js is a JavaScript parsing optimizer designed to reduce the time browsers spend pre-parsing scripts to improve initial execution speed. It transforms source code to minimize the overhead associated with browser parsing. The project implements a technique that wraps function calls in parentheses to bypass initial pre-parsing and reduce double-parsing overhead. To maintain the utility of the transformed code, it includes a source map generator that links the optimized output back to the original source. The toolset also includes performance benchmarking capabilities to measure the exa

    Ships a utility for measuring the time a browser takes to parse files to evaluate optimizations.

    JavaScript
    عرض على GitHub↗3,734
  1. Home
  2. Data & Databases
  3. Performance Caching Systems
  4. Partial Parse Caching

استكشف الوسوم الفرعية

  • Parsed Script Caching2 وسوم فرعيةCaching of fully parsed abstract syntax trees or bytecode for scripts to avoid redundant parsing. **Distinct from Partial Parse Caching:** Distinct from Partial Parse Caching by storing complete parsed script representations rather than linguistic segments.