Items mentioned in recipes, not found
Web Programmer
I’m not sure if this is pointed out somewhere. I was poking around with data extracted from API and noticed there are some recipes that their output item does not exists in Items API. Here are the list.
Guh, I think those are the items that are actually guild upgrades and deposited straight into the guild inventory. I’ll have to dig through the code that handles the crafting bits and see why the whitelist isn’t seeing events for those items — I was pretty sure I had it hooked up right but apparently it’s broken.
Also I would like to know, How you guys handle deleting items or recipes in GW2?
As background, the API gets the item data (and any other data that can be localized) from a backend server whose sole responsibility is serializing data from the .dat file. I’m not altogether too familiar with the internal format of it (I just work against an API for reading it), but my understanding is that all updates are opaque and destructive — there are technically deltas that are used to patch the .dat file, but they’re binary diffs. The only feasible way I know of to check on the before/after versions of an item is to check it in perforce — which the backend servers won’t ever have access to.
My recommendation is to, whenever there’s a new release (e.g., once every two weeks), to do a complete reindex of all the endpoints that have a ?lang parameter. Since you’ve got a copy of the old dataset, you can compute the diff against the new one and store whatever metadata you like.
Sorry I don’t have better news