I have a local json file that I'd like to search for a matching unknown record
# without having to read in the entire object (the file has over 200,00 records
Re: read json from file
By: Mortifis to All on Sat Jun 20 2020 11:24:37
I have a local json file that I'd like to search for a matching unknown record
# without having to read in the entire object (the file has over 200,00 records
If your file looks like this:
{"a":0,"b":1,"c":2,"d":3}
You basically need to parse the whole thing. Or write your own special parser.
If your file is like this:
{"a":0,"b":1,"c":2,"d":3}
{"e":4,"f":5,"g":6,"h":7}
Then those are two separate JSON strings on adjacent lines. In which case you can read the file line by line, and each line will work with JSON.parse.sadly ... it looks like this :
}, .... that's the 1st three records of 209,578 records ... gotta read all 209,578 records (1 million, 8 hundred 86 thousand, 2 hundred 13 lines) ? ...
bleh ... lol
Re: Re: read json from file
By: Mortifis to echicken on Sat Jun 20 2020 21:43:56
}, .... that's the 1st three records of 209,578 records ... gotta read all 209,578 records (1 million, 8 hundred 86 thousand, 2 hundred 13 lines) ? ...
bleh ... lol
Not necessarily, but you'll need something more than what we have on hand.
Streaming JSON parsers for handling really large files are a thing, but I don't know if there's one that can be readily ported to our environment.
JSON.parse() only wants to parse a complete JSON string. You'd need to be able to pre-process what you're reading from the file to be sure that JSON.parse() won't choke on it.
That's tricky to do in a generic way that could handle any old JSON you throw at it.
Easier if you do it as a custom job for this particular file, and if this file is just a flat array of objects, all with the same keys and types of values. It's either going to be a bit complicated but fairly solid, or simple and hacky and maybe not super reliable.
Sysop: | digital man |
---|---|
Location: | Riverside County, California |
Users: | 1,043 |
Nodes: | 15 (0 / 15) |
Uptime: | 41:25:23 |
Calls: | 500,899 |
Calls today: | 2 |
Files: | 109,370 |
D/L today: |
4,670 files (476M bytes) |
Messages: | 304,219 |