RAID 0, much less RAID 0 with 128 GB SSDs, is pointless unless your workload consists of lots of reading big data files. Something like real-time video editing.
The 128 GB SSDs generally have half the lanes (half the flash packages running in parallel) as the 256 GB SSDs, so are already considerably slower. Putting two of them in RAID 0 basically puts you even with a single 256 GB SSD, except you now have the overhead of software RAID instead of all of the parallelism being handled by the drive's hardware.
Drive speeds are measured in MB/s. This is unfortunate because your perception of drive speed is actually the inverse - sec/MB aka wait time. This means the bigger MB/s gets, the less difference it makes. If you need to read 1 GB of data:
100 MB/s HDD = 10 sec
250 MB/s SATA 2 SSD = 4 sec
500 MB/s SATA 3 SSD = 2 sec
1 GB/s RAID 0 SSDs = 1 sec
See how each doubling of MB/s results in only half the improvement in wait time? Compared to a HDD, a SSD on SATA 2 saves you 6 sec. Going to SATA 3 saves you just 2 more sec. And going to RAID 0 only saves you 1 more sec. In other words, the majority of the speedup from switching to a SSD is obtained by a single SSD on SATA 2. And the vast majority of the speedup by a single SSD on SATA 3. RAIDing them gives very little improvement in wait times.
Furthermore, these MB/s are only for sequential read/writes of large files (e.g. real-time video editing). The vast majority of computer read/writes are of smaller files. And even the fastest PCIe SSD still maxes out at around 40 MB/s read and 100 MB/s write on 4k files. RAID 0 actually makes those slower, because since 4k is the smallest read/write a drive can do, both drives are still dealing with 4k of data. And the system overhead of RAID 0 slows things down more than if you were read/writing 4k data with a single drive.
Unless you're doing real-time video editing or something similar, don't bother wasting time with RAID 0 with SSDs. Your best performance at present is with a 500GB or 1TB SSD.