How to Install and Uninstall perl-ORLite.noarch Package on Fedora 34

Last updated: July 05,2024

1. Install "perl-ORLite.noarch" package

This tutorial shows how to install perl-ORLite.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install perl-ORLite.noarch

2. Uninstall "perl-ORLite.noarch" package

In this section, we are going to explain the necessary steps to uninstall perl-ORLite.noarch on Fedora 34:

$ sudo dnf remove perl-ORLite.noarch $ sudo dnf autoremove

3. Information about the perl-ORLite.noarch package on Fedora 34

Last metadata expiration check: 1:53:14 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : perl-ORLite
Version : 1.98
Release : 24.fc34
Architecture : noarch
Size : 50 k
Source : perl-ORLite-1.98-24.fc34.src.rpm
Repository : fedora
Summary : Extremely light weight SQLite-specific ORM
URL : https://metacpan.org/release/ORLite
License : GPL+ or Artistic
Description : SQLite is a light weight single file SQL database that provides
: an excellent platform for embedded storage of structured data.
: However, while it is superficially similar to a regular server-side
: SQL database, SQLite has some significant attributes that make using
: it like a traditional database difficult. For example, SQLite is
: extremely fast to connect to compared to server databases
: (1000 connections per second is not unknown) and is particularly bad
: at concurrency, as it can only lock transactions at a database-wide level.
: This role as a super-fast internal data store can clash with the roles and
: designs of traditional object-relational modules like Class::DBI or
: DBIx::Class. What this situation would seem to need is an object-relation
: system that is designed specifically for SQLite and is aligned with its
: idiosyncrasies. ORLite is an object-relation system specifically
: for SQLite that follows many of the same principles as the ::Tiny
: series of modules and has a design that aligns directly to the capabilities
: of SQLite.