Hiksemi Rayo Lite 2TB Gen4 M.2 NVMe 3D NAND SSD - HIKSEMI | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
HIKSEMI

Hiksemi Rayo Lite 2TB Gen4 M.2 NVMe 3D NAND SSD

SKU: HS-SSD-RAYO-L-2048G
R 8 307.00
In Stock

Quick Specs

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support
Secure payment — PayFast & Yoco · 256-bit SSL encrypted

Frequently Bought Together

Quick Specs

  • Experience rapid data transfer with up to 7,100 MB/s read speeds.
  • Realise faster write speeds up to 6,350 MB/s for efficient file handling.
  • Benefit from ample storage with a generous 2TB capacity.
  • Enjoy long-term reliability with a 1500TB TBW rating.
  • Increase responsiveness with PCIe Gen4 interface.

Unleash lightning-fast speeds with PCIe Gen4

Experience the future of storage with the Hiksemi Rayo Lite 2TB NVMe SSD. This NVMe SSD, utilising the latest PCIe Gen4 technology, offers blistering speeds that will transform your computing experience. Upgrade your desktop or laptop with a blazing-fast 2TB NVMe SSD and enjoy faster game loading, quicker application launches, and seamless multitasking.

Boost productivity with rapid data access

The Hiksemi Rayo Lite 2TB NVMe SSD is not just about speed; it is about productivity. Whether you are editing large video files, running complex simulations, or simply transferring data, this 2TB NVMe SSD will significantly reduce waiting times, allowing you to focus on what matters most. The substantial 2TB capacity provides ample storage for your operating system, applications, and important files.

Reliability and longevity for peace of mind

Built with high-quality 3D NAND flash memory, the Hiksemi Rayo Lite is designed for durability and longevity. With a mean time between failures (MTBF) of 2,000,000 hours and a total bytes written (TBW) rating of 1500TB, this SSD offers exceptional reliability, ensuring your data is safe and accessible for years to come. Backed by a 60-month warranty, you can have complete peace of mind.

Optimise thermal performance

The Hiksemi Rayo Lite is engineered to maintain optimal thermal performance, even under heavy workloads. This ensures consistent speeds and prevents thermal throttling, which can impact performance. The efficient power consumption of just 4.9W helps to extend battery life in laptops, making it an excellent choice for mobile users. As an M.2 2280 form factor NVMe SSD, it's compatible with a wide range of systems.

FEATURES:

  • High-speed PCIe interface
  • Extremely fast read and write speeds up to 7,100MB/s and 6,350MB/s
  • 3D NAND technology helps to develop higher capacity, performance, and stability
  • Anti-shock and anti-fall protection
  • No mechanical structure, using electronic chip control, data more secure.
  • Widely compatible with personal computers, laptops, PS5, etc.

SPECIFICATIONS:

  • Capacity: 2TB
  • Form Factor: M.2 2280
  • Max Sequential Read Speed: 7,100 MB/s
  • Max Sequential Write Speed: 6,350 MB/s
  • Max Random 4K Read (IOPS): 875K
  • Max Random 4K Write (IOPS): 480K
  • Max Power Consumption: 4.9W
  • TBW: 1500TB
  • MTBF: 2,000,000 hours
  • Storage Medium: 3D NAND
  • Interface: PCIe Gen4x4
  • Working Temperature: 0 °C to 70 °C (32 °F to 158 °F)
  • Storage Temperature: -40 °C to 85 °C (-40 °F to +185 °F)
  • TRIM: Supports
  • Warranty: 60 Months
  • Weight: 7g

WHAT'S IN THE BOX:

  • Hiksemi Rayo Lite 2TB Gen4 M.2 NVMe 3D NAND SSD x1

Why Hiksemi?

Hiksemi is committed to providing reliable and innovative storage solutions. The Rayo Lite 2TB NVMe SSD combines speed, capacity, and durability, making it a smart choice for both gamers and professionals in South Africa seeking to enhance their system's performance. Its M.2 2280 form factor ensures broad compatibility.

Brand HIKSEMI
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 60 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

Hiksemi Future 1TB Gen4 M.2 NVMe 3D NAND SSD
HIKSEMI

Hiksemi Future 1TB Gen4 M.2 NVMe 3D NAND SSD

R 5 503.84

Out of Stock

Patriot Viper VP4000 Mini 1TB M.2 2230 PCIe Gen4x4 SSD
Patriot

Patriot Viper VP4000 Mini 1TB M.2 2230 PCIe Gen4x4 SSD

R 5 514.22

Out of Stock

Patriot P220 256GB 2.5" SSD
Patriot

Patriot P220 256GB 2.5" SSD

R 1 101.85

In Stock

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!