<?xml version="1.0" encoding="UTF-8"?><rss version="2.0">
<channel>
<description>A feed of the latest and greatest ForgeBox package entries</description>
<link>https://www.forgebox.io/</link>
<title>ForgeBox RSS Feed - Type:lucee-extensions - Sorting:recent</title>
<copyright>Ortus Solutions, Corp (www.ortussolutions.com)</copyright>
<docs>http://www.rssboard.org/rss-specification</docs>
<generator>FeedGenerator</generator>
<lastBuildDate>Sun, 12 Apr 2026 13:59:44 GMT</lastBuildDate>
<pubDate>Sun, 12 Apr 2026 13:59:44 GMT</pubDate>
<item>
<title>Ortus ORM Extension - v6.5.4</title>
<description>Lucee extension providing a Hibernate ORM wrapper for CFML</description>
<link>https://forgebox.io/view/D062D72F-F8A2-46F0-8CBC91325B2F067B</link>
<pubDate>Fri, 27 Mar 2026 00:20:20 GMT</pubDate>
<category>lucee-extensions</category>
<guid isPermaLink="false">https://forgebox.io/view/D062D72F-F8A2-46F0-8CBC91325B2F067B</guid>
</item>
<item>
<title>Ortus Redis Cache - v3.5.0+91</title>
<description># Ortus Redis Extension
The Ortus Redis Extension is a native Lucee Extension that allows your CFML server to connect to a Redis server/cluster and leverage it for built-in caching, session storage, and NoSQL document storage.
&gt; Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache and message broker. It supports data structures such as strings, hashes, lists, sets, sorted sets with range queries, bitmaps, hyperloglogs and geospatial indexes with radius queries. Redis has built-in replication, Lua scripting, LRU eviction, transactions and different levels of on-disk persistence, and provides high availability via Redis Sentinel and automatic partitioning with Redis Cluster. 
[Learn More](https://redis.io/topics/introduction)
## Requirements
* Lucee 5.1.0 and above
* Redis 4.0.X and above
## Features In A Nutshell
* Add Redis native functionality to any Lucee server
* Install at server level (Available to all contexts)
* Create Cache connections in the Lucee web administrator or via `Application.cfc` to connect to any network-accessable Redis cluster
* Set and get objects from Redis via standard CFML functions and tags (`cachePut(), cacheGet(), cfcache action="get|put"`)
* Fully supports all built-in Lucee cache functions including wildcard filters
* Seamlessly distribute storage of the following to any Redis Cluster
** Lucee session storage
** Lucee client storage
** Lucee Ram resouces (ram://...)
* Seamlessly cache the following to any timeout-sensitive Redis key
** Results of database queries
** Results of deterministic functions
** Complex or simple objects in your application's code
** Cached templates (`cfcache action="content|cache|serverCache"`)
* Extremely lightweight and fast
* Native Redis functions: `RedisGetConnectionPool( cacheName ), RedisGetProvider( cacheName )`</description>
<link>https://forgebox.io/view/5C558CC6-1E67-4776-96A60F9726D580F1</link>
<pubDate>Wed, 09 Jul 2025 16:54:55 GMT</pubDate>
<category>lucee-extensions</category>
<guid isPermaLink="false">https://forgebox.io/view/5C558CC6-1E67-4776-96A60F9726D580F1</guid>
</item>
<item>
<title>Ortus Couchbase Cache - v4.0.0+6</title>
<description>A Lucee caching extension allow you to connect to a Couchbase Cluster for cachine, session, and client storage.</description>
<link>https://forgebox.io/view/14B0C2A7-5CFC-4606-9167C93959A8B82C</link>
<pubDate>Tue, 12 Sep 2023 18:17:29 GMT</pubDate>
<category>lucee-extensions</category>
<guid isPermaLink="false">https://forgebox.io/view/14B0C2A7-5CFC-4606-9167C93959A8B82C</guid>
</item>
<item>
<title>Lucee MariaDB extension - v3.5.3</title>
<description>Type 4 JDBC driver for MariaDB</description>
<link>https://forgebox.io/view/F2FA5DB2-0C27-499C-B1171D2D812FDAF9</link>
<pubDate>Sat, 10 May 2025 09:24:11 GMT</pubDate>
<category>lucee-extensions</category>
<guid isPermaLink="false">https://forgebox.io/view/F2FA5DB2-0C27-499C-B1171D2D812FDAF9</guid>
</item>
<item>
<title>Ortus MongoDB Cache - v1.2.0+5291</title>
<description># Ortus MongoDB Extension
The Ortus MongoDB Extension is a native Lucee Extension that allows your CFML server to connect to a Mongo server/cluster and leverage it for built-in caching, session storage, and NoSQL document storage.
&gt; MongoDB is a general purpose, document-based, distributed database built for modern application developers and for the cloud era. MongoDB stores data in flexible, JSON-like documents, meaning fields can vary from document to document and data structure can be changed over time. MongoDB is free to use. Versions released prior to October 16, 2018 are published under the AGPL. All versions released after October 16, 2018, including patch fixes for prior versions, are published under the Server Side Public License (SSPL) v1.
[Learn More](https://www.mongodb.com/what-is-mongodb)
## Requirements
* Lucee 5.1.0 and above
* Mongo 4.0.X and above
## Features In A Nutshell
* Add Mongo native functionality to any Lucee server
* Install at server level (Available to all contexts)
* Create Cache connections in the Lucee web administrator or via `Application.cfc` to connect to any network-accessable Mongo cluster
* Set and get objects from Mongo via standard CFML functions and tags (`cachePut(), cacheGet(), cfcache action="get|put"`)
* Fully supports all built-in Lucee cache functions including wildcard filters
* Seamlessly distribute storage of the following to any Mongo Cluster
** Lucee session storage
** Lucee client storage
** Lucee Ram resouces (ram://...)
* Seamlessly cache the following to any timeout-sensitive Mongo key
** Results of database queries
** Results of deterministic functions
** Complex or simple objects in your application's code
** Cached templates (`cfcache action="content|cache|serverCache"`)
* Extremely lightweight and fast
* Native Mongo functions: `MongoGetConnection( cacheName ), MongoGetProvider( cacheName )`
## Development Environment Setup
Initialize the cluster:
A Docker compose file has been set up to allow for testing the extension within a cluster of MongoDB servers. To intialize the environment for the first time, run `docker-compose up -d --build`
Once the containers have been built and initialized, you will need to run the following command to initialize the MongoDB cluster:
```
docker exec -it ortus-mongodb-lucee-extension_mongodb_1 mongo --eval 'rs.initiate({ _id: "extension_test", members: [{ _id: 1, host: "mongodb:27017" }, { _id: 2, host: "mongo-repl1:27017" }, { _id: 3, host: "mongo-repl2:27017" }], settings: { getLastErrorDefaults: { w: "majority", wtimeout: 30000 }}})'
```
_Note: if you have cloned the repo in to a custom named directory ( e.g. named `mongodb` instead of `ortus-mongodb-lucee-extension` ), you will need to change that to your local directory name in the command above_
Once the cluster is intialized you may build and deploy the extension and test by accessing `http://127.0.0.1:61656/tests/runner.cfm`</description>
<link>https://forgebox.io/view/6A03159F-C6DC-4FCC-95A068B1E1A903FA</link>
<pubDate>Fri, 07 Jan 2022 22:08:39 GMT</pubDate>
<category>lucee-extensions</category>
<guid isPermaLink="false">https://forgebox.io/view/6A03159F-C6DC-4FCC-95A068B1E1A903FA</guid>
</item>
<item>
<title>Lucee Performance Analyzer - v2.1.1.1</title>
<description>Analyze debug logs to identify performance problems</description>
<link>https://forgebox.io/view/A345C8CB-04CC-4D2B-93D50471D5105D83</link>
<pubDate>Thu, 15 Apr 2021 15:40:59 GMT</pubDate>
<category>lucee-extensions</category>
<guid isPermaLink="false">https://forgebox.io/view/A345C8CB-04CC-4D2B-93D50471D5105D83</guid>
</item>
<item>
<title>Lucee Log Viewer - v3.0.0.38</title>
<description>A Lucee admin plugin to view Lucee log files</description>
<link>https://forgebox.io/view/91AF5D75-8CEF-4510-A170240C401F5FBA</link>
<pubDate>Tue, 13 Oct 2020 00:50:33 GMT</pubDate>
<category>lucee-extensions</category>
<guid isPermaLink="false">https://forgebox.io/view/91AF5D75-8CEF-4510-A170240C401F5FBA</guid>
</item>
<item>
<title>Ortus PDF Tools - v2.1.0.snapshot</title>
<description>A collection of tags for PDF capabilities: cfpdfform, cfpdfformparam</description>
<link>https://forgebox.io/view/ortuspdf-extension</link>
<pubDate>Tue, 18 Jun 2019 11:25:22 GMT</pubDate>
<category>lucee-extensions</category>
<guid isPermaLink="false">https://forgebox.io/view/ortuspdf-extension</guid>
</item>
<item>
<title>Lucee File Coverage Debug Template - v0.0.1.13</title>
<description>This extension provides a debugging template that logs all the calls to script files as a test or QA person navigates your site. </description>
<link>https://forgebox.io/view/lucee-file-coverage</link>
<pubDate>Wed, 27 Jun 2018 06:20:18 GMT</pubDate>
<category>lucee-extensions</category>
<guid isPermaLink="false">https://forgebox.io/view/lucee-file-coverage</guid>
</item>
<item>
<title>cfspreadsheet - v3.0.3</title>
<description># \ for Lucee 5.x&#13;
&#13;
### Link to cfspreadsheet for Lucee 4.x:&#13;
[https://github.com/Leftbower/cfspreadsheet-lucee](https://github.com/Leftbower/cfspreadsheet-lucee "cfspreadsheet-lucee 4.x")&#13;
&#13;
## Install:&#13;
1. Download and copy the `cfspreadsheet-lucee-5.lex` into the `/lucee-server/deploy` or `{lucee-web}/deploy` directory of a running Lucee 5 installation.&#13;
1. Wait a little bit, it can take Lucee up to a minute to recognize and install the extension. After the extension disappears from the `deploy` directory it is installed. If you now go to the Lucee Server or Web Admin and to the "Extension/Application" section, you should see it there as installed.&#13;
&#13;
## Notes:&#13;
1. Works for both the server or an individual web context.&#13;
1. Uninstall does not currently remove the `.lar` file installed into archives directory.&#13;
1. Installing into the web-context components directory currently not supported in Lucee 5, so the component cfc is bundled into a `.lar` with component mapping.&#13;
</description>
<link>https://forgebox.io/view/037A27FF-0B80-4CBA-B954BEBD790B460E</link>
<pubDate>Sun, 11 Mar 2018 19:34:03 GMT</pubDate>
<category>lucee-extensions</category>
<guid isPermaLink="false">https://forgebox.io/view/037A27FF-0B80-4CBA-B954BEBD790B460E</guid>
</item>
<item>
<title>Lucee ULID Extension - v</title>
<description>A Lucee Extension to generate ULIDs, </description>
<link>https://forgebox.io/view/E4B50224-D3CB-4CA4-B75B28399DA181AF</link>
<pubDate>Sun, 12 Apr 2026 13:59:44 GMT</pubDate>
<category>lucee-extensions</category>
<guid isPermaLink="false">https://forgebox.io/view/E4B50224-D3CB-4CA4-B75B28399DA181AF</guid>
</item>
</channel>
</rss>
