Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Bringing your favorite runtimes to Red Hat Enterprise Linux 8.4

June 21, 2021
Don Pinto
Related topics:
Developer toolsEdge computingGoLinuxPython
Related products:
Red Hat Enterprise Linux

    Red Hat Enterprise Linux (RHEL) 8.4 is generally available, and developing your applications on RHEL has never been easier. When we ask developers why they choose Red Hat Enterprise Linux for development over other operating systems, consistency and reliability rank at the top of the list.

    A big part of that reliability comes from using curated runtimes for your programming language. These are available through application streams on Red Hat Enterprise Linux, which bring the same reliability promise, but on a closer parity to the pace of languages and frameworks that developers love to use. As with every RHEL release, we are excited to bring you newer versions of popular language runtimes in Red Hat Enterprise Linux 8.4. In this article, we will take a closer look at the newly added runtimes and discuss why they matter for your applications.

    Time zone support in Python 3.9

    With Python 3.9, you can modernize your existing applications by leveraging the latest Python features, including time zone–aware timestamps, the new string prefix and suffix methods, and dictionary union operations.

    Let's dive a bit more into the details of time zone–aware timestamps in Python. Prior to version 3.9, datetime objects had no time zone information by default. The tz attribute had to be set to add a time zone—but only one time zone was available (UTC).

    In Python 3.9, you can now use ZoneInfo to access the local machine's time zone database, which has hundreds of different possible time zones. This is quite useful when you are building an application such as a calendar utility that has to span across multiple time zones.

    >>> from datetime import datetime, timezone
    
    >>> from zoneinfo import ZoneInfo
    
    >>> datetime.now(tz=ZoneInfo(“America/Toronto”))

    Faster allocation with Golang 1.15

    With Go 1.15, you can easily get access to the quickly evolving upstream version of Go. This gives you tools including improved memory allocation for small objects at high core counts, linker improvements that can speed up build times as well as reduce binary sizes, and several other core library improvements. There are many use cases for needing to allocate a large number of small objects very quickly—for example, if you are loading a social graph with a million nodes and then running analytics on that graph. For more information, check out the Go 1.15 release notes.

    var nodes []*node
    
    for j := 0; j < 1e6; j++ {
    
      b := allocator.AllocateAligned(nodeSz)
    
      n := (*node)(unsafe.Pointer(&b[0]))
    
      n.val = rand.Int63()
    
      nodes = append(nodes, n)
    }
     
    
    sort.Slice(nodes, func(i, j int) bool {
    
      return nodes[i].val < nodes[j].val
    
    })
    
    // The graph nodes are now sorted in ascending value of val
    

    Improved testing features in Rust 1.49

    With Rust 1.49, you can write high-performance applications that run with a low memory footprint, making it highly suitable for edge use cases. Additionally, Rust is a statically typed language, making it easy to catch errors at compile-time and maintain. For more information, check out the Rust 1.49 release notes.

    Better tooling in LLVM 11.0

    With the latest LLVM toolset, you can take advantage of fresher tooling and compatibility with other code built with compatible versions of LLVM/Clang. For more information on LLVM, check out the LLVM 11.0 release notes.

    Getting started with Red Hat Enterprise Linux 8.4

    We hope you download Red Hat Enterprise Linux 8.4, and we can’t wait to see the amazing applications you develop on it.

    If you're new to using Red Hat products, register for the Red Hat Developer program to get access to the no-cost individual developer subscription for Red Hat Enterprise Linux, which can be used in production for up to 16 systems.

    These are only a few of the cool things you can do with Red Hat Enterprise Linux application streams. Application streams unlock a huge set of modules that you can use in various application use cases. To get a list of all the application stream modules, simply run the following command on your Red Hat Enterprise Linux command line:

    $ yum module list
    

    New to application streams in Red Hat Enterprise Linux? Try out our hands-on lab.

    Last updated: September 27, 2024

    Related Posts

    • Introducing Application Streams in RHEL 8

    • 2020 Time Zone Database (tzdata) changes

    Recent Posts

    • Federated identity across the hybrid cloud using zero trust workload identity manager

    • Confidential virtual machine storage attack scenarios

    • Introducing virtualization platform autopilot

    • Integrate zero trust workload identity manager with Red Hat OpenShift GitOps

    • Best Practice Configuration and Tuning for Linux and Windows VMs

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.