From 6bfe609cdcb0f2d80c5a5b106f0f091b5c75f040 Mon Sep 17 00:00:00 2001 From: Andy Date: Fri, 12 Apr 2024 11:26:55 -0400 Subject: [PATCH 1/3] fix #15737 --- src/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/README.md b/src/README.md index b050d82672d..f2bb02ed003 100644 --- a/src/README.md +++ b/src/README.md @@ -33,8 +33,9 @@ Orchard Core CMS is a complete rewrite of Orchard CMS on ASP.NET Core. It’s no - **Performance**. This might the most obvious change when you start using Orchard Core CMS. It’s extremely fast for a CMS. So fast that we haven’t even cared about working on an output cache module. To give you an idea, without caching Orchard Core CMS is around 20 times faster than the previous version. - **Portable**. You can now develop and deploy Orchard Core CMS on Windows, Linux and macOS. We also have Docker images ready for use. +- **Database Support**. SQL Server, MySQL, MariaDB, PostgreSQL and SQLite. For MariaDB, select MySQL as the type of database and follow all the rules of MySQL. -- **Document database** abstraction. Orchard Core CMS still requires a relational database, and is compatible with SQL Server, MySQL, PostgreSQL and SQLite, but it’s now using a document abstraction (YesSql) that provides a document database API to store and query documents. This is a much better approach for CMS systems and helps performance significantly. +- **Document database abstraction**. Orchard Core CMS still requires a relational database, and is compatible with SQL Server, MySQL, PostgreSQL and SQLite, but it’s now using a document abstraction (YesSql) that provides a document database API to store and query documents. This is a much better approach for CMS systems and helps performance significantly. - **NuGet Packages**. Modules and themes are now shared as NuGet packages. Creating a new website with Orchard Core CMS is actually as simple as referencing a single meta package from the NuGet gallery. It also means that updating to a newer version only involves updating the version number of this package. From ec7dd7359a455262a73c0b25a8e57c17c42bfd97 Mon Sep 17 00:00:00 2001 From: andy Date: Fri, 12 Apr 2024 16:16:46 -0400 Subject: [PATCH 2/3] Update src/README.md Co-authored-by: Hisham Bin Ateya --- src/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/README.md b/src/README.md index f2bb02ed003..0ef2575c82d 100644 --- a/src/README.md +++ b/src/README.md @@ -33,7 +33,7 @@ Orchard Core CMS is a complete rewrite of Orchard CMS on ASP.NET Core. It’s no - **Performance**. This might the most obvious change when you start using Orchard Core CMS. It’s extremely fast for a CMS. So fast that we haven’t even cared about working on an output cache module. To give you an idea, without caching Orchard Core CMS is around 20 times faster than the previous version. - **Portable**. You can now develop and deploy Orchard Core CMS on Windows, Linux and macOS. We also have Docker images ready for use. -- **Database Support**. SQL Server, MySQL, MariaDB, PostgreSQL and SQLite. For MariaDB, select MySQL as the type of database and follow all the rules of MySQL. +- **Database Support**. SQL Server, MySQL, MariaDB, PostgreSQL, and SQLite. For MariaDB, select MySQL as the database type and follow all MySQL rules. - **Document database abstraction**. Orchard Core CMS still requires a relational database, and is compatible with SQL Server, MySQL, PostgreSQL and SQLite, but it’s now using a document abstraction (YesSql) that provides a document database API to store and query documents. This is a much better approach for CMS systems and helps performance significantly. From 5ad03939d3abdc5d116a718b2b55166cb0a46207 Mon Sep 17 00:00:00 2001 From: andy Date: Fri, 12 Apr 2024 16:16:53 -0400 Subject: [PATCH 3/3] Update src/README.md Co-authored-by: Hisham Bin Ateya --- src/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/README.md b/src/README.md index 0ef2575c82d..fcb6f337cc8 100644 --- a/src/README.md +++ b/src/README.md @@ -35,7 +35,7 @@ Orchard Core CMS is a complete rewrite of Orchard CMS on ASP.NET Core. It’s no - **Portable**. You can now develop and deploy Orchard Core CMS on Windows, Linux and macOS. We also have Docker images ready for use. - **Database Support**. SQL Server, MySQL, MariaDB, PostgreSQL, and SQLite. For MariaDB, select MySQL as the database type and follow all MySQL rules. -- **Document database abstraction**. Orchard Core CMS still requires a relational database, and is compatible with SQL Server, MySQL, PostgreSQL and SQLite, but it’s now using a document abstraction (YesSql) that provides a document database API to store and query documents. This is a much better approach for CMS systems and helps performance significantly. +- **Document database abstraction**. Orchard Core CMS still requires a relational database and is compatible with SQL Server, MySQL, PostgreSQL, and SQLite, but it’s now using a document abstraction (YesSql) that provides a document database API to store and query documents. This is a much better approach for CMS systems and helps performance significantly. - **NuGet Packages**. Modules and themes are now shared as NuGet packages. Creating a new website with Orchard Core CMS is actually as simple as referencing a single meta package from the NuGet gallery. It also means that updating to a newer version only involves updating the version number of this package.